body {
    background-image: var(--main-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

h1, h2, h3, h4, h5, h6, a {
    color: var(--color);
}

h2 {
    font-size: 24px;
    font-weight: 500;
}

.back-btn {
    width: 270px;
    height: 45px;
    border-radius: 4px;
    background-image: var(--gradient);
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.back-btn:hover {
    text-decoration: none;
    color: #FFFFFF;
}

.illustration {
    width: 242px;
    height: 242px;
    object-fit: contain;
}

@media (max-width: 480px) {

    .section-head {
        font-size: 28px;
    }

    .section-subhead {
        font-size: 17px;
    }

    .illustration {
        width: 110px;
        height: 110px;
    }

    .back-btn {
        margin-top: 1rem;
    }
}