@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

body{
    margin: 0;
    padding: 0;
    font-family: Montserrat;
}

.wrapper{
    width: 100%;
    height: 100vh;
    background: linear-gradient(#0000005a, #0000005a), url('https://bogatyr.club/uploads/posts/2024-03/1711661788_bogatyr-club-4rmm-p-sud-fon-1.jpg');
    background-size: cover;
}

[class*="__container"]{
    max-width: 1100px;
    margin: 0px auto;
}

.wrapper__container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title{
    color: #fff;
    max-width: 70%;
    font-size: 35px;
    font-weight: 600;
}

.subtitle{
    margin-top: 40px;
    color: #fff;
    font-size: 20px;
    width: 60%;
}

.button{
    margin-top: 50px;
}

.button a{
    padding: 20px 100px;
    background: #00b789;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.4s;
    box-sizing: border-box;
}

.button a:hover{
    background: #fff;
    color: #000;
}

@media (max-width: 425px) {
    [class*="__container"]{
        max-width: 300px;
        margin: 0px auto;
    }

    .wrapper{
        background-position: -400px 0;
    }

    .title{
        font-size: 17px;
        max-width: 100%;
        text-align: center;
        margin-top: -200px;
    }

    .subtitle{
        margin-top: 20px;
        width: 100%;
        text-align: center;
        font-size: 15px;
    }
    
    .button a{
        padding: 15px 60px;
    }
}