@font-face {
    font-family: "Lipton-Highlight";
    src: url("../fonts/LiptonHighlight/LiptonHighlight-Textured.otf")
      format("opentype");
  }
  
  @font-face {
    font-family: "IntroLipton-Bold";
    src: url("../fonts/IntroLipton-Bold/IntroLipton-Bold.eot")
        format("embedded-opentype"),
      url("../fonts/IntroLipton-Bold/IntroLipton-Bold.otf")
        format("opentype"),
      url("../fonts/IntroLipton-Bold/IntroLipton-Bold.woff") format("woff"),
      url("../fonts/IntroLipton-Bold/IntroLipton-Bold.woff2")
        format("woff2");
  }
  
  @font-face {
    font-family: "IntroLipton-SemiBold";
    src: url("../fonts/IntroLipton-SemiBold/IntroLipton-SemiBold.eot")
        format("embedded-opentype"),
      url("../fonts/IntroLipton-SemiBold/IntroLipton-SemiBold.otf")
        format("opentype"),
      url("../fonts/IntroLipton-SemiBold/IntroLipton-SemiBold.woff")
        format("woff"),
      url("../fonts/IntroLipton-SemiBold/IntroLipton-SemiBold.woff2")
        format("woff2");
  }
  
  @font-face {
    font-family: "IntroLipton-Black";
    src: url("../fonts/IntroLipton-Black/IntroLipton-Black.eot")
        format("embedded-opentype"),
      url("../fonts/IntroLipton-Black/IntroLipton-Black.otf")
        format("opentype"),
      url("../fonts/IntroLipton-Black/IntroLipton-Black.woff")
        format("woff"),
      url("../fonts/IntroLipton-Black/IntroLipton-Black.woff2")
        format("woff2");
  }


html{
    text-decoration: none;
    width: 100vw;
    height: 100vh;
    margin: 0;
}

body{
    background-image: url('../img/background_mobile_v2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;   
    margin: 0; 
    padding: 0;
}

.page-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
    
}

.top-filler{
    display: flex;
    justify-content: center;
    height: 15%;
}

.center-copy{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-top:40px;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-self: flex-end;
    text-align: center;
    padding-bottom: 16px;
    width: 100%;
}

h1{

}

.upper-left-logo{
    position: absolute;
    top:17px;
    right: 32px;
}

.upper-left-logo img{
        height: 75px;
        width: 75px;
}

.center-copy h1{
    font-family: Lipton-Highlight;
    margin: 0;
    font-size: 34px;
    text-align: center;
}

.center-copy h2{
    font-family: 'IntroLipton-Black';
    color: #3B4797;
    font-size: 60px;
    margin: 0;
    
}

.countdown-timer h2{
    font-family: 'Lipton-Highlight';
}

.footer h3{
    font-family: 'IntroLipton-Black';
    color:    #3B4797;
    margin: 8px;
    font-size: 24px;
}

.footer p{
    margin: 0;
    font-family: 'IntroLipton-SemiBold';
    color: #3B4797;
    font-size: 13px;
    font-weight: 100;
    line-height: 16px;
}

@media screen and (min-width: 667px) {
  body{
    background-image: url('../img/background_desktop_v2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;   
    margin: 0; 
    padding: 0;
  }

  .upper-left-logo{
    position: absolute;
    top:40px;
    right: 40px;
  } 

  .upper-left-logo img{
    height: 120px;
    width: 120px;
  }

  .top-filler{
      height: 5%;
  }

  .center-copy h1{
      font-size:57px;
  }

  .center-copy{
    padding-top:0px;
    width: 500px;
  }

  .center-copy h2{
    margin-bottom:50px; 
  }

  .footer h3{
    margin-top: 35px;
    font-size: 30px;
  }

  .page-container{
      display: flex;
      justify-content: center;  
  }
}