html,
body {
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  background-color: #eef0f4;
  color: #432000;
  user-select: none;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.container {
  display: flex;
  /* border: 4px solid #432000; */
  border-radius: 20px;
  flex-direction: column;
  width: 320px;
  margin: 30px auto;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

input {
  font-size: 18px;
  color: #432000;
  background-color: #dce1eb;
  width: 90%;
  line-height: 40px;
  border-radius: 5px;
  border: none;
  text-align: center;
  outline: none;
}
input:hover {
  outline: 1.5px solid #432000;
}
input:focus {
  outline: 1.5px solid #432000;
}

button {
  font-size: 18px;
  cursor: pointer;
  color: #fdfdfd;
  background-color: #ac485a;
  width: 90%;
  line-height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 10px 0 10px;
}
button:hover {
  background-color: #833846;
}

ul {
  display: flex;
  width: 90%;
  padding: 0;
  flex-wrap: wrap;
  text-align: center;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

ul li {
  cursor: pointer;
  font-size: 18px;
  background-color: #fffdf8;
  color: #432000;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  width: fit-content;
  text-align: center;
  padding: 0 20px 0 20px;
  line-height: 40px;
  flex-grow: 1;
  border-radius: 7px;
}

ul li:hover {
  background-color: #faf1d8;
}

/* Preloader text
.preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #03001c;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  gap: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.preloader.fade {
  opacity: 0;
}
#waving-hand-preloader {
  width: 100px;
  position: relative;
  bottom: 10px;
} */
