@font-face {
    font-family: Acumin;
    src: url(assets/fonts/Acumin\ Pro\ Wide\ Light.woff);
  }

  @font-face {
    font-family: AcuminBold;
    src: url(assets/fonts/Acumin\ Pro\ Wide\ Medium.woff);
  }

  
.flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-width: 95%;
    margin: 0 auto;
}

.logo {
     max-height: 100px;
}

.img {
  max-width: 98%;
  margin: 15% 0;
}

h1 {
    font-size: 95px;
    font-family: "Acumin";
    color: #FF3600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

h2 {
    font-size: 45px;
    font-family: "AcuminBold";
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.desktop{
    display: none;
}
.mobile {
    display:block;
}


@media screen and (min-width: 1000px) {

    .desktop{
        display: block;
    }
    .mobile {
        display:none;
    }
    .logo {
        max-height: 70px;
   }

    .img {
        max-width: 50vw;
        margin: 0;
        max-height: 50vh;
      }
      
h1 {
    font-size: 45px;
    margin: 5px;
 
}

h2 {
    font-size: 25px;
    margin: 5px;

}

}
