*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html, body{
    height: 100%;
}
body{
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-image: url(./img/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    
}
.logo{
   width: 100%;
   padding: 30px 0 0 30px;
}
.logo img{
    max-width: 100%;
    width: auto;
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
}
.main .gif{
    max-width: 100%;
    width: 802px;
}
.main p{
    font-size: 18px;
    text-align: center;
    color: #BDBDBD;
    margin-top: 15px;
    line-height: 22px;
}
.main .btn{
    text-transform: capitalize;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;

}
.main .btn img{
    position: relative;
    left: 0;
    transition: all 300ms ease;
}
.main .btn:hover img{
left: 10px;
}
@media only screen and (max-width: 1024px) {
    .logo{
        text-align: center;
    }
    .logo img{
        width: 180px;
    }
}