body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
}

#container {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#button {
    margin-top: 10px;
}


#footer {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 10px 0 20px 0;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 10px 0px;

    a {
        margin: 10px;
    }
}


.septembed {
    width: 90%;
    margin: auto auto 10px auto;
    overflow-x: hidden;
    border-radius: 19px;
}

@media (prefers-color-scheme: dark) {}

h1 {
    text-align: center;
    font-size: 50pt;
}

.bold {
    font-weight: bold;
}

#theme-picker {
    padding-top: 10px;

    label {
        padding-right: 5px;
    }
}


a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    body {
        font-size: large;
    }

    /* Make the buttons stack vertically instead of horizontally */
    .button-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px;

        /* Apply to any direct child (anchors, buttons, etc.) */
        * {
            display: block !important;
            width: 90% !important;
            box-sizing: border-box;
        }
    }

}