@import url('https://fonts.cdnfonts.com/css/content');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-image: url("./images/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 16rem;
    line-height: 28rem;
    font-family: 'Content', sans-serif;
    color: #2E2E2E;
    height: 100%;
    overflow: hidden;
}



.container{
    max-width: 1296rem;
    margin: 0 auto;
    padding: 0 17rem;
}

.logo{
    width: 270rem;
    margin-bottom: 30rem;
}

.wrapper{
    width: 100%;
    height: 100%;
    max-height: 100dvh; /* обходим баги с браузерными панелями на мобилках */
    overflow-y: scroll;
    padding: 50rem 0 30rem;
    -webkit-overflow-scrolling: touch;
}

.page-content{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: 32rem;
    font-weight: 400;
    margin-bottom: 18rem;
    line-height: 38rem;
}

p{
    margin-bottom: 25rem;
}

a{
    color: #0063D5;
    transition: all 0.4s ease;
}

a:hover{
    color: #003470;
}

.button a{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #945E00;
    color: #fff;
    width: 300rem;
    height: 44rem;
    border-radius: 5rem;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-bottom: 30rem;
}

.button a:hover{
    background-color: #7B4E00;
}


@media (max-width: 991.98px) {
    body{
        font-size: 13rem;
        line-height: 20rem;
    }
    .logo{
        width: 164rem;
    }

    h1{
        font-size: 24rem;
    }

    p{
        margin-bottom: 20rem;
    }

    .button a{
        width: 256rem;
        height: 38rem;
    }

    .wrapper{
        padding: 28rem 0;
    }
}
