.generic-section .container {
    display: flex;
    flex-direction: column;
    gap: var(--md-gap);
    align-items: center;
    text-align: center;
}

.generic-section a {
    color: var(--text-color);
}

.generic-section .button {
    color: var(--white-color);
}

.generic-section svg {
    max-width: 100%;
}

.buttons {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .generic-section svg {
        width: 70%;
    }
}

@media (max-width: 743px) {
    .generic-section .container {
        gap: var(--normal-gap);
    }

    .generic-section svg {
        width: 100%;
    }
}