@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Montserrat:wght@800&display=swap');

body {
    height: 100vh;
    margin: 0;
    background-image: url(img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 20px;
}

.box {
    background: #fff;
    padding: 140px 70px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    display: block;
    margin: 15vh auto;
    /* font-weight: 400; */
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 45px;
    text-transform: uppercase;
}

.logo {
    width: 75%;
    float: right;
    margin: 60px 20px 0px 0px;
}

.btn-custom {
    background-color: #9D1882;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 35px;
    text-transform: uppercase;
    font-size: 12px;

}

.btn-custom:hover {
    background-color: #921779;
    color: #fff;
}

/* // Small devices (landscape phones, 576px and up) */
@media only screen and (max-width: 576px) { 
    .logo {
        width: 85%;
        float: none;
        display: block;
        margin: 20px auto 60px;
    }

    .box {
        padding: 80px 30px;
        width: 95%;
        text-align: center;
    }

    h1 {
        font-size: 32px;
    }

    body {
        font-size: 18px;
    }
    
 }

/* Portrait */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .logo {
        width: 75%;
        float: none;
        display: block;
        margin: 70px auto 0px
    }
  }

  /* Landscape */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1180px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 2){

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 33px;
    }
}

@media only screen and (min-width: 1900px){

}