html,
body {
  background-color: #001524;
  color: #f8f9fa;
  user-zoom: fixed;
  user-select: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  font-family: "General Sans", sans-serif;
}
.main {
  /* border: 2px solid red; */
  display: flex;
  width: 320px;
  height: 95%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#header {
  position: absolute;
  top: 30px;
  right: 2px;
  gap: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: fit-content;
  font-size: 15px;
}
#logo {
  width: 50px;
}
#container {
  font-weight: 600;
  font-size: 20px;
  padding: 0;
  list-style: none;
  width: 320px;
  height: 600px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
#container li {
  background-color: #eb2d49;
  line-height: 60px;
  font-size: 16px;
  width: 90%;
  padding-left: 20px;
  text-align: start;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #e2550e;
}
#container button {
  border: none;
  color: #f8f9fa;
  display: flex;
  font-family: "General Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  justify-content: center;
  background-color: #7564d4;
  line-height: 60px;
  font-size: 20px;
  width: 90%;
  padding-left: 20px;
  text-align: start;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #1e6091;
}
#container button:hover {
  filter: contrast(1.75);
}

#return {
  color: #f8f9fa;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  text-align: start;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #0d8338;
  background-color: #67a378;
  line-height: 60px;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: fit-content;
}
#return:hover {
  filter: contrast(1.75);
}
#return-img {
  width: 40px;
}
