@import url("https://fonts.googleapis.com/css2?family=Victor+Mono:ital@0;1&display=swap");
/* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

body {
  font-family: Victor Mono;
  color: #ebebeb;
  background-image: url("./assets/gifs/spacebackground.gif");
  padding: 1rem;
  background-repeat: repeat;
}

main > * > h1 {
  text-align: center;
  animation: rainbow-color-change 5s infinite;
  font-style: italic;
  margin: 1rem;
}

header > h1 {
  font-size: 3rem;
  font-style: italic;
  text-align: center;
  animation: rainbow-color-change 5s infinite;
}

.c-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@keyframes rainbow-color-change {
  0% {
    color: red;
  }
  14.28% {
    color: orange;
  }
  28.56% {
    color: yellow;
  }
  42.84% {
    color: green;
  }
  57.12% {
    color: blue;
  }
  71.4% {
    color: indigo;
  }
  85.68% {
    color: violet;
  }
  100% {
    color: red;
  }
}

.btn-1 {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e5e9f0;
  border: 2px solid #5e81ac;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 1rem;
}

.btn-1:hover {
  background-color: #ff00ff;
  border-color: #00ff00;
  color: #fff;
}

h3 {
  color: black;
}

.inline {
  display: flex;
}

p {
  /* color: #d8dee9; */
  color: black;
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
}

a {
  font-style: normal;
  font-weight: 900;
}

.ntxt {
  color: black;
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
}

.text {
  background-color: #eff1f5;
  border-radius: 20px;
  padding: 1rem;
}

.sbs {
  display: flex;
  justify-content: center;
}

ul {
  margin: 0;
}

.section-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.smol {
  margin: 0.5rem;
  width: 10rem;
}

.www {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

footer > * > p {
  font-size: 1rem;
  text-align: center;
  color: white;
  font-style: italic;
}

footer > * > .text {
  background-color: transparent;
}

@keyframes fall {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 1;
  }
}
@keyframes sway {
  0% {
    margin-left: 0;
  }
  25% {
    margin-left: 50px;
  }
  50% {
    margin-left: -50px;
  }
  75% {
    margin-left: 50px;
  }
  100% {
    margin-left: 0;
  }
}

#snow-container {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: opacity 500ms;
  pointer-events: none;
  width: 100%;
}
.snow {
  animation: fall ease-in infinite, sway ease-in-out infinite;
  color: skyblue;
  position: absolute;
}
