@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Mountains+of+Christmas:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mountains of Christmas";
  font-weight: 700;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
body .container {
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
body .container section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  display: flex;
  width: 100vw;
  position: relative;
}
body .container::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

nav {
  position: absolute;
  top: 3em;
  left: 0;
  width: 100vw;
  text-transform: uppercase;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 3em;
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 10em;
  border-radius: 200px;
  padding: 1em 3em;
  background: rgba(0, 0, 0, 0.649);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
nav ul li a:hover {
  color: rgb(221, 255, 0);
}
nav ul .active a {
  color: rgb(238, 255, 0);
}
nav .musicbtn {
  all: unset;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
nav .musicbtn i {
  display: none;
}
nav .musicbtn .active {
  display: block;
  color: white;
  padding-bottom: 5px;
  transform: scale(1.4);
}

.container .nightsky {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-image: url("./assets/nightsky.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
}
.container .nightsky .move {
  animation: slide 5s ease-in;
}

.fade {
  opacity: 0;
  animation: fade 5s ease-in;
}

@keyframes slide {
  from {
    transform: translate(0%, 100%);
  }
  to {
    transform: translate(300%, -100%);
  }
}
@keyframes fade {
  0%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.home {
  background-image: url("./assets/bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.home .blur {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 10em;
  padding-bottom: 3em;
  background-color: rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  height: 100%;
  width: 100%;
}
.home main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home main h1 {
  font-size: 80px;
  color: #e02828;
  text-transform: uppercase;
}
.home main small {
  font-size: 25px;
  color: rgb(0, 0, 0);
}
.home .grp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .grp p {
  font-family: "Courier New", Courier, monospace;
}
.home .gift {
  background-image: url("./assets/giftbox.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 150px;
  height: 150px;
  cursor: pointer;
  animation: tilt 1.2s infinite ease;
}

@keyframes tilt {
  0%, 100% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(20deg);
  }
}
.about {
  background-image: url("./assets/bg2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3em 10em 0 10em;
}
.about .board {
  width: 100%;
  height: auto;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  padding: 3em 5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 2em;
}
.about .board .santa {
  height: 300px;
  width: auto;
  position: absolute;
  top: 25%;
  left: -9%;
}
.about .board h1 {
  font-size: 3.5rem;
  color: #CA2424;
}
.about .board p {
  font-family: "Courier New", Courier, monospace;
}

.history {
  background-image: url("./assets/bg3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10em 5em 3em 5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.history marquee {
  font-size: 5rem;
  position: absolute;
  bottom: 0;
}
.history main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 2em;
  max-width: 1000px;
}
.history main h1 {
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
}
.history main p {
  font-family: "Courier New", Courier, monospace;
}/*# sourceMappingURL=index.css.map */