* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #03001c;
  height: 100vh;
  width: 100vw;
  color: #e96b80;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.main {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 90%;
  justify-content: space-around;
}

#list {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  list-style: none;
  font-size: 22px;
  gap: 20px;
  line-height: 50px;
  z-index: 10;
}

#subheader {
  font-size: 50px;
  font-family: "Clash Display";
  text-align: center;
  font-weight: 600;
  position: relative;
  top: 30px;
}

ul.tags {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-family: "Clash Grotesk";
  font-weight: 550;
  opacity: 75%;
  overflow: hidden;
  position: relative;
  top: 10px;
}

ul.list {
  font-family: "Supreme", sans-serif;
}

#waving-hand-img {
  width: 60px;
}

.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;
}

@keyframes slideshow {
  0% {
    transform: translateX(100%);
  }
  25% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(0%);
  }
  75% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.carousel {
  display: flex;
  gap: 10px;
  animation: slideshow 3.5s linear infinite;
}

.carousel-container {
  display: flex;
  gap: 10px;
}

/* .carousel-container::before,
.carousel-container::after {
  position: absolute;
  height: 30px;
  width: 50px;
  content: "";
  background: linear-gradient(to left, #050022 0%, #03001c 50%, #03001c 100%);
}

.carousel-container::before {
  left: 0;
}
.carousel-container::after {
  right: 0;
  transform: rotateZ(180deg);
} */

a.main-page-links {
  text-decoration: none;
  color: #e96b80;
  opacity: 90%;
}

li.main-page-options {
  display: inline-block;
  position: relative;
  color: #e96b80;
  text-decoration: none;
}

li.main-page-options::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  bottom: -5px;
  position: absolute;
  background: #e96b80;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
  opacity: 90%;
}

li.main-page-options:hover::after {
  width: 100%;
  left: 0;
  color: #e96b80;
  opacity: 90%;
}

#message {
  border-radius: 30px;
  color: #03001c;
  background-color: #e96b80;
  padding: 20px 20px 20px 20px;
  z-index: 99;
  gap: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#ty {
  font-family: "Clash Display", sans-serif;
  font-size: 34px;
  font-weight: 500;
  text-decoration: underline;
}
p.tysm {
  font-family: "Supreme", sans-serif;
  font-size: 20px;
}
#xmark {
  position: absolute;
  top: 30px;
  right: 30px;
}
#xmark:hover {
  cursor: pointer;
}
.main.blur {
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  -ms-filter: blur(50px);
  filter: blur(50px);
}

/* Media Query for Desktop-Responsive Design (Note: this website was developed as mobile-first) */
@media only screen and (min-device-width: 787px) {
  #list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
    top: -200px;
  }
  ul.tags {
    position: relative;
    top: -120px;
  }
  #subheader {
    font-size: 70px;
  }
  #message {
    width: 350px;
    height: 350px;
  }
}

@media screen and (min-width: 760px) and (max-width: 1024px) and (orientation: landscape) {
  #subheader {
    font-size: 42px;
  }
  #list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: relative;
    top: -60px;
  }
  ul.tags {
    position: relative;
    top: -30px;
  }
  #message {
    width: 70%;
    height: 70%;
  }
}
