@-webkit-keyframes FADE-IN {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes FADE-IN {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes FADE-IN {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes FADE-IN {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/open-sans-v35-latin-regular.woff2') format('woff2'),
    url('/fonts/open-sans-v35-latin-regular.woff') format('woff'),
    url('/fonts/open-sans-v35-latin-regular.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  color: white;
  background-color: #03051e;
}

.bg {
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-radial-gradient(bottom, circle, #1a2183, #010313);
  background: radial-gradient(at bottom, circle, #1a2183, #010313);
  -webkit-animation: FADE-IN 10s infinite;
  -moz-animation: FADE-IN 10s infinite;
  -o-animation: FADE-IN 10s infinite;
  animation: FADE-IN 10s infinite;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  place-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3em;
  position: absolute;
  z-index: 1000;
}

q {
  font-family: 'Times New Roman', Times, serif;
  font-size: 3vw;
}

p {
  font-size: 1.5vw;
}

@media screen and (max-width: 750px) {
  q {
    font-size: 4vw;
  }
  p {
    font-size: 2vw;
  }
  h1 {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media screen and (max-width: 500px) {
  q {
      font-size: 7vw;
    }
  
  p {
    font-size: 3.5vw;
  }
  
  h1 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}


#text-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
