body {
    margin: 0;
    padding: 0;
    font-family: 'Dirty Headline', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
}


.first-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh 0 0 0;
    width: 100%;
    height: 65vh;   
}


.first-block .a-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 700px;
}


.first-block a {
    width: 700px;
    max-width: 100%;
}


.first-block h1 {
    margin: 0;
    position: relative;
    top: 165px;
    color: #FFF;
    font-size: 56px;
}


.second-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10vh 0 0 0;
    width: 100%;
    height: 100vh;
}

.second-block h1 {
    margin-bottom: 36px;
    top: 180px;
    position: sticky;
    color: #FFF;
    font-size: 56px;
    transition: color 0.5s ease-in-out;
}


.second-block .list-wrapper {
    width: 1800px;
    max-width: 80%;
    height: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 100px 0;
    background-image: url('../images/background/texture-yellow-grunge-background.jpg');
    background-repeat: no-repeat;
    /* background-position: cover; */
    background-position: top center;
}


.second-block .list-wrapper span {
    font-size: 40px;
    margin: 16px 0;
}


.second-block .list-wrapper a {
    margin: 32px 0 15px 0;
    padding: 5px 25px;
    background: #000000;
    color: #FFF;
    text-decoration: none;
    font-size: 45px;
}


@media (max-width: 600px) {
    .first-block h1 {
        font-size: 32px;
        top: 80px;
    }

    .second-block h1 {
        font-size: 32px;
        top: calc(27.5% - 60px)
    }

    .second-block {
        height: 100vh;
    }

    .second-block .list-wrapper span {
        margin: 8px 0;
        font-size: 20px;
    }

    .second-block .list-wrapper a {
        margin: 20px 0 10px 0;
        font-size: 25px;
    }
}