@font-face {
  font-family: 'CraveCustom';
  src: url('/fonts/CraveCustom.woff2') format('woff2'),
       url('/fonts/CraveCustom.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: "avenir-lt-pro", sans-serif;
  color:white;
  overflow: hidden;
}

.layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #0a5254;
}

header, footer {
    height: 10vh;
    background: url('/assets/Pattern.svg') no-repeat top center;
    background-size: cover;
}

header {
    transform: scaleY(-1);
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  flex-direction: column;
  overflow: hidden;
  max-height:80vh;
}

.coming-soon {
  font-family: 'CraveCustom', sans-serif;
  font-size: 45px;
  font-weight:100;
  margin: 0px;
  opacity: 0;
}

.video-wrapper {
  max-width: 700px;
  margin: 20px 0;
}

.divider-line {
  width: 0;
  height: 1px;
  background: white;
  margin: 20px auto;
  transition: width 1s ease;
}

.light-text, .bold-text {
  font-size:24px;
  opacity: 0;
  transition: opacity 1s ease;
  margin: 0px;
}

.light-text {
  font-weight: 300;
  margin-top: 10px;
}

.bold-text {
  font-weight: 700;
  margin-top: 5px;
}

br {
    display:none;
}

@media only screen and (max-width: 768px) {
    br {
        display:block;
    }
    
    .content{
        max-height:60vh;
    }
    
    footer,header {
        height:20vh;
    }
    
    
}

   @supports (padding-bottom: env(safe-area-inset-bottom)) {
      footer {
        padding-bottom: env(safe-area-inset-bottom);
      }
    }