

:root {
  --black: #000000;
  --yellow: #fbff00;
  --transition: all 0.4s ease 0s;
}
* {
  box-sizing:border-box;
}

html {
  font-size: 16px;
}
a {
  color: #ffffff;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 180%;
}


.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(30, 30, 30);
}

.video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}





/* Dark overlay (optional but recommended for readability) 
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  z-index: 2;
}
*/
/* Text layer */
.content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}





h1 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 140%;

}
h3 {
   margin-bottom: 5px;
}
p {
  margin-bottom: 20px;
  margin-top: 0;
}
.content__text p {
  font-size: 1.125rem;
}


.content,
.content__text {
  text-align: center;
}
.content__main {
  width: 800px;
  margin: 0 auto 80px auto;
}
.content__footer {
  width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.content__footer-col-left {
  text-align: left;
}
.content__footer-col-right {
  text-align: right;
}
.content__logo {
  width: 600px;
  margin: 0 auto 40px auto;
}
.content__logo img {
  width: 100%;
}




/** 
 * MEDIA QUERIES
 */

/* Mobiles */

@media (max-width: 768px) { 
/*
  .video-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
*/
 a {
  color: var(--black);
 }

  .hero {

    height: 400px;
  }
  .content {
    display: none;
  }
  .content-mobile {
    display: block;
  }

  .content-mobile .content__main,
  .content-mobile .content__footer {
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    margin-bottom: 65px;
  }
  .content-mobile .content__footer {
   display: block;
   padding-bottom: 65px;
  }
  .content-mobile .content__footer-col-left,
  .content-mobile .content__footer-col-right {
    text-align: center;
  }

  .content-mobile .content__logo {
    width: 350px;
    margin: 0 auto 40px auto;
  }


    
}

/* Larger than mobiles */

@media (min-width: 768.1px) { 

  .content-mobile {
    display: none;
  }
  .content {
    display: flex;
  }

  

    
}

/* Tablets */

@media (min-width: 769px) and (max-width: 1024px) {

.content__main {
  width: 600px;
}

.content__footer {
  width: 90%;
}

}



/* Smaller than Desktops */

@media (max-width: 1024px) {


  
}

/* Desktops */

@media (min-width: 1024px) {



}