/* general */

/* all elements */
* {
    margin: 0;
    padding: 0;
}

/* css variables */
:root {
    --color-primary: maroon;
    --color-secondary: white;
}

/* body and default body styles */
body {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* temporary section divider */
.section {
    min-height: 80vh;
    border-bottom: 1px solid var(--color-primary);
}

/* widgets */

/* sections */

/* for notes (like "under construction") */
.s_note {
    min-height: fit-content;
    padding: 1em;
}

.s_note > .title {
    width: fit-content;
    margin: auto;
}

.s_note > .description {
    width: fit-content;
    margin: auto;
}
