.thanks{
    background: var(--grad);
    text-align: center;
}

.thanks img{
    width: 12rem;
    margin: 0 auto 4rem;
}

.thanks h1{
    color: var(--mainColor);
    font-size: 3.2rem;
    font-weight: 700;
}

.thanks p{
    font-size: 1.8rem;
    margin: 2.5rem 0 6.5rem;
}

.thanks a{
    font-size: 1.8rem;
    border-bottom: solid 0.105rem;
    transition: 0.3s;
}

.thanks a:hover{
    color: var(--mainColor);
}

@media (max-width: 767px) {
    .thanks img{
        width: 7rem;
        margin: 0 auto 3rem;
    }

    .thanks h1{
        font-size: 2rem;
    }

    .thanks p{
        margin: 2rem 0 4rem;
    }
}