*, html, body{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}
body{ 
    width: 100%; 
    height: 100vh;
    background:#000 url("images/bg2.jpg") no-repeat center top;
    background-size: contain;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 90vh;
}
h1{ 
    text-align: center; 
    padding-top: 20px;
}
h1 img{
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,.5));
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,.5));
}
.slogan{
    color: #fff;
    text-align: center;
    padding: 50px 10px;
}
.slogan span{ 
    display: block;
    text-shadow: 1px 1px 2px rgba(0,0,0,.5);
}
.text1{
    font-size: 28px;
    font-weight: 700;
}
.text2{
    font-size: 70px;
    font-weight: 900;
}
.text3{
    font-size: 28px;
    font-weight: 400;
}
.whats{
    width: 96%;
    max-width: 830px;
    margin: 0 auto;
    background: rgba(255,255,255, .7);
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,.5));
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,.5));
    padding: 15px 10px;
    border-radius: 15px;
}
.whats a{
    color: #222;
    text-decoration: none;
    text-align: center;
    display: block;
    font-size: 18px;
    font-weight: 400;
}
@media(max-width:767px){
    body{
        background-size: cover;
    }
    h1 img{
        width: 250px;
        height: auto;
    }
    .slogan{
        padding: 25px 10px;
    }
    .text1{
        font-size: 18px;
    }
    .text2{
        font-size: 30px;
    }
    .text3{
        font-size: 24px;
    }
    .whats{
        padding: 10px 5px;
        width: 90%;
    }
    .whats a{
        font-size: 14px;
    }
}