.thanks-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.thanks-message {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
}

#copyrightId {
    font-size: 13px;
    text-align: center;
    font-weight: 700;
}

.thanks-link-button-secondary {
    text-decoration: none;
    max-width: 500px;
    width: min(100%, 300px);
}

.thanks-download-cv-button {
    border-radius: 4px;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--border-color);
}

@media screen and (max-width: 500px) {
    .thanks-message {
        font-size: 28px;
    }

    #copyrightId {
        font-size: 11px;
    }

    .thanks-download-cv-button {
        padding: 6px 6px;
        font-size: 13px;
    }
}

@media screen and (max-width: 400px) {
    .thanks-message {
        font-size: 24px;
    }

    #copyrightId {
        font-size: 10px;
    }

    .thanks-download-cv-button {
        padding: 4px 6px;
        font-size: 10px;
    }
}