@font-face {
  font-family: 'Avenir-Medium';
  src: url('../Fonts/Avenir-Medium.woff2') format('woff2'),
       url('../Fonts/Avenir-Medium.woff') format('woff'),
       url('../Fonts/Avenir-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir-Light';
  src: url('../Fonts/Avenir-Light.woff2') format('woff2'),
       url('../Fonts/Avenir-Light.woff') format('woff'),
       url('../Fonts/Avenir-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --pure--white: #ffffff;
  --pure-black: #000000;
  --grey-zone: #ababab;
  --cosmic-cobalt: #26428b;
  --lavender: #e6e6fa;
  --grey--azure: #3a596f;
  --opal: #c0d6c7;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: Avenir-Light;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--pure-black);
  overflow-x: hidden;
  overscroll-behavior: none;
}
  .video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
    z-index: 0;
  }

  .video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100svh;
    min-width: 177.78svh;  /* preserves 16:9 scaling */
    min-height: 56.25vw;
    max-height: 150svh;
    max-width: 150vw;
    transform: translate(-50%, -50%);
    border: 0;
  }
  .page{
position: relative;
 min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom:clamp(25rem, 20vw + 4rem, 60rem);
}
.header{
  position: fixed;
  display: flex;
  gap: clamp(0.7rem, 5vw + 1rem, 1rem);    
  z-index: 1; 
  justify-content: flex-end;
  right: 2rem;
  padding-top:1rem;
  box-sizing: border-box;
  justify-content: flex-end;
}
.star {
width: clamp(1.5625rem, 0.9vw + 0.9rem, 6.25rem);
  display:flex;
  text-decoration: none;
  list-style: none;
  animation: scaleLoop 5s ease-in-out infinite;
}
.reachs, .reachus {
  display:flex;
  color:var(--pure--white);
  text-decoration: none;
  list-style: none;
  font-weight: 300;
  font-size: clamp(0.375rem, 0.4vw + 0.5rem, 5.3125rem);
  z-index: 1;
  margin-top:clamp(0.2rem, 0.2vw + 0.02rem, 0.5rem);
}
.container-1{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top:7rem;
}
.logo-spacer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#subtext {
    display: flex;
    color:var(--pure--white);
 font-size: clamp(0.625rem, 0.8vw + 0.5rem, 4.375rem);
    text-align:left;
    z-index: 1;
    font-weight: 300;
    margin-top:clamp(4rem, 4vw + 1rem, 12rem);
}
.container-3 {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    z-index: 4;
  gap: clamp(1rem, 5vw, 50rem);

  }
.container-3 .titlebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
#headtext {
font-size: clamp(1.25rem, 2.7vw + 0.5rem, 10.625rem);
  display: flex;
text-align: center;
align-items: center;
  color:var(--pure--white);
  text-decoration: none;
    list-style: none; 
    font-weight: 300;
}
.container-3 li {
    list-style: none;
}
.title:hover {
  color:rgb(136, 136, 136);
}
#infotext {
   text-decoration: none;
font-size: clamp(0.375rem, 0.4vw + 0.5rem, 5.3125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--grey-zone);
   font-weight: 300;
   text-align: left;
   width:clamp(21rem, 40vw, 70rem);
}
.footer-container {
 z-index: 1;
}
.footerNS {
  display: flex;
  justify-content: center;
 
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
 
}
.footer,
.privacy {
  display: flex;
    margin: 0;
    font-size: clamp(0.09375rem, 0.4vw + 0.2rem, 2.1875rem);
    color: var(--pure--white);
     font-weight: 300;
     text-align: center;
     text-decoration: none;
    justify-content: center;
     z-index: 1;
}
 @keyframes scaleLoop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
