.section-dashboard {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
}

.section-dashboard .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-dashboard .button-dash {
    display: flex;
    gap: 30px;
}


.section-dashboard h2 {
    color: var(--primary-color);
    text-align: center;

    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


@media (max-width: 576px) {
    .section-dashboard .container {
        justify-content: center;
    }

    .section-dashboard .container img {
        width: 40vh;
    }

    .section-dashboard h2 {
        font-size: 20px;
    }

    .section-dashboard .container .button-dash {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }
}