html, body, * {
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

section {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: clip;
    font-family: "Courier New";
}
.row > .col {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: fit-content;
    padding: 0 0.8rem;
}
img {
    max-width: 100%;
    width: 100%;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    /*padding-right: calc(-0.5 * var(--bs-gutter-x));
    padding-left: calc(-0.5 * var(--bs-gutter-x));*/
}
.row > * {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    /*padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);*/
}

.col {
    flex: 1 0 0%;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.w-maxcontent {
    width: max-content;
    max-width: max-content;
}

.w-unset {
    width: unset!important;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.m-auto {
    margin: auto;
}
.text-center {
    text-align: center;
}