@font-face {
  font-family: 'Kallisto';
  src: url('../fonts/kallisto.woff2') format('woff2'),
        url('../fonts/kallisto.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

/* MAIN */
.video_background {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0a1628;
}
.video_background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: fill;
}
.content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.centered_image {
  max-width: 50%;
  max-height: 30%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.text_container {
  display: inline-flex;
  align-items: center;
  font-family: 'Kallisto', sans-serif;
  text-align: center;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                0 0 20px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
.sophia_text {
  font-size: 26px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.2;
  display: inline-block;
  vertical-align: middle;
}
.letter_a {
  color: #7dd3fc;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.8),
               0 0 20px rgba(125, 211, 252, 0.5);
}
.construction_text {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
}
.loading_dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-left: 12px;
  gap: 4px;
  vertical-align: middle;
  line-height: 1;
}
.loading_dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #7dd3fc;
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.8);
  animation: loading_dot 1.4s infinite ease-in-out;
}
.loading_dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}
.loading_dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}
.loading_dots .dot:nth-child(3) {
  animation-delay: 0s;
}
@keyframes loading_dot {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
.video_background video {
  display: none;
}
.video_background {
  background-image: url('../img/image_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
}

@media (max-width: 768px) {
.sophia_text {
  font-size: 21px;
}
.construction_text {
  font-size: 19px;
}}
/* END MAIN */