@import url("variables.css");
@import url("debug.css");


* {
    scroll-behavior: smooth !important;
}

body {
    margin: 0;
    padding: 0;

    font-size: 1rem;

    font-family: var(--main-font-family);
}

h1 {
    line-height: 1  em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--text-font-family);
}

a {
    color: var(--complementary-color);
}

overlay {
    display: block;
}

tiledbackground {
    display: block;
}

.red-bg {
    background-color: var(--background-color-red);
}

.white-bg {
    background-color: var(--background-color-white);
}

.txt-on-red {
    color: var(--text-color-red) !important;
}

.txt-on-white {
    color: var(--text-color-white) !important;
}

.basic-container {
    padding: 4px;
    border-radius: 5px;
}

.box-sizing-bbox {
    box-sizing: border-box;
}

.box-sizing-cbox {
    box-sizing: content-box;
}

.no-pointer {
    pointer-events: none;
}

.all-pointer {
    pointer-events: all !important;
}

.flex-1-1 {
    flex: 1 1 auto;
}

.img-shadow {
    box-shadow: inset;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.full-min-height {
    min-height: 100%;
}

.auto-height {
    height: max-content;
}

.pos-abs {
    position: absolute;
}

.pos-rel {
    position: relative;
}

.pos-fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.left-50p {
    left: 50%;
}

.sw {
    width: 100vw;
}

.gap-5 {
    gap: 5px;
}
.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.text-align-left {
    text-align: left;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.gap-20p {
    gap: 20%;
}

.no-margin {
    margin: 0px;
}

.no-padding {
    padding: 0px;
}

.sh {
    height: 100vh;
    flex-shrink: 0;
}

.sh-mn {
    height: calc(100vh - var(--nav-min-height));
}

.sh-navbar {
    height: calc(100vh - var(--nav-height));
}

.body-section-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.overflow {
    overflow: auto;
}

.no-overflow {
    overflow: hidden;
}

.body-section {
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.col {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.z-1 {
    z-index: -1;
}

.z-2 {
    z-index: -2;
}

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.b {
    display: block;
}

.box-shadow {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.75);
}

/*
* Spacer fills the remaining space left in a container
*/
spacer {
    justify-self: flex-start !important;
    width: 100%;
    height: 100%;
}

p {
    margin: 5px 0px;
}