.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Set the height to the full viewport height */
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.buttons {
    background-color: white;
    border-radius: 5px;
    color: black;
    border: 1px solid black;
    padding: 10px;
    width: 300px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 25px;
    cursor: pointer;
}

:root {
    --background-light: #FFFFFF;
    /* Light mode background color */
    --text-light: #000000;
    /* Light mode text color */
    --background-dark: #000000;
    /* Dark mode background color */
    --text-dark: #FFFFFF;
    /* Dark mode text color */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background-light);
    /* Set the initial background color */
    color: var(--text-light);
    /* Set the initial text color */
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-light: #FFFFFF;
        --text-light: #000000;
        --background-dark: #000000;
        --text-dark: #FFFFFF;
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        /* Change to dark mode background color */
        background-color: var(--background-dark);
        /* Change to dark mode text color */
        color: var(--text-dark);
    }

    .buttons {
        text-align: center;
        vertical-align: middle;
        background-color: gray;
        border-radius: 5px;
        color: white;
        border: 1px solid white;
        padding: 10px;
        width: 300px;
        height: 40px;
        margin-bottom: 25px;
        cursor: pointer;
    }
}