/* --- Variables --- */
:root {
    --content: #000000;
}

/* --- Custom Font --- */
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-weight: bold;
    font-style: italic;
}
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #000000;
    background-image: var(--body-bg-image);
    background-repeat: repeat;
    background-size: 500px 450px;
    color: white;
}
button {
    background-color: #000000;
    font-family: 'Nunito', sans-serif;
    color: white;
    border: none;
    display: inline-block;
    cursor: pointer;

}
/* Make sure everything includes padding/borders in size calculations */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

/* --- Main Layout --- */
#container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height */
}

#flex {
    display: flex;
    flex: 1;
    align-items: stretch; /* Makes sidebar match main height */
}

/*===more typography===*/
.temptext {
    text-align: center;
}

.tempdiv {
    margin: 0 auto;
}