* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Courier New", Courier, monospace;
}

body {
  width: 100%;
  height: 100%;
}

#container_ {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: whitesmoke;
}

ul {
  gap: 1rem;
  display: flex;
  font-size: 1.3rem;
  flex-direction: column;
}

li {
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: rgb(231, 231, 231);
}

li span {
  cursor: pointer;
  font-weight: bold;
  font-size: 1.3rem;
  color: rgb(83, 83, 204);
  margin-right: 0.5rem;
  text-transform: capitalize;
}

/* --------------------------- */
.order-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.child {
  width: 100px;
  height: 100px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #6bcbff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
