.central-div {
    background-color: var(--page-background);
    width: 100%;
}

.central-div h1 {
    margin-bottom: 20px;
    padding-bottom: 10px;
}


@media only screen and (min-width: 800px) {

    .container h2 {
        /* text-align: center; */
        margin-bottom: 20px;
    }
    
    .global-container {
        justify-content: center;
        align-items: center;
        min-height: 70%; /* Full height of the viewport */
        position: relative;
        max-width: 100%;
    }

    .central-container {
        width: 100%; /* Adjust as needed */
        min-height: 550px; /* Adjust as needed */
        display: flex;
        justify-content: center;
        position: relative;
        min-width: 600px;
    }

    .container{
        min-width: 650px;
    }
}


@media only screen and (max-width: 800px) {

    .container h2 {
        /* text-align: center; */
        margin-bottom: 40px;
    }

    .global-container {
        justify-content: center;
        align-items: center;
        min-height: 70%; /* Full height of the viewport */
        position: relative;
    }

    .central-container {
        width: 100%; /* Adjust as needed */
        min-height: 550px; /* Adjust as needed */
        display: flex;
        justify-content: center;
        position: relative;
    }
}

.central-container{
    padding-bottom: 50px;
}

#button-navigation {
    display: flex;
    justify-content: space-between; /* Um botão à esquerda e outro à direita */
    align-items: end; /* Alinha verticalmente */
    position: absolute;
    bottom: 0;
    width: 100%;
}


.central-div {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 550px;
    color: #000;
    font-family: 'Helvetica Neue', sans-serif;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.central-div.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

:root[data-theme="dark"] .central-div {
    background-color: transparent;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .central-div {
        color: var(--primary-color);
    }

    :root:not([data-theme="light"]) .central-div h1 {
        color: var(--primary-color);
    }
}