:root {
    --c1:   0,   0,   0;
    --c2:  125,  125,  125;
    --c3:  244,  244,  244;
}

* {
    font-family: Geist, sans-serif;
    font-weight: 500;
    box-sizing: border-box;
}

h1 {
    all: unset;
}

strong {
    font-weight: 500;
}

body {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    user-select: none;
    --webkit-user-select: none;
    background-size: cover;
    background-position: center;
}

div {
    user-select: none;
}

.content {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: 0.1fr 1fr 0.15fr;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    grid-template-columns: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.background {
    /*background-color: rgb(189, 189, 189);*/
    z-index: 0;
    min-height: 0;
}

.headerContainer {
    text-align: center;
    background-color: rgba(var(--c1), 0.4);
    border-bottom: 3px solid rgb(var(--c1));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.openSlidesButton {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(var(--c1), 0.96);
    border: 2px solid rgba(var(--c1), 0.96);
    border-radius: 50%;
    padding: 0.5em;
    font-size: clamp(12px, 2vmin, 32px);
    width: 0.4vmin;
    height: 0.4vmin;
    min-width: fit-content;
    display: flex;
    min-height: fit-content;
    margin: 0.5%;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    cursor: pointer;
    aspect-ratio: 1/1;
    text-align: center;
    align-content: center;
    color: rgb(var(--c3));
    user-select: none;
    transition: 0.25s ease;
    justify-content: center;
    align-items: center;
    transform-origin: bottom left;
}

.openSlidesButton:hover {
    background-color: rgb(var(--c3));
    border-color: rgb(var(--c3));
    color: rgb(var(--c1));
    transform: scale(1.2);
}

.openSlidesButton:active {
    transform: scale(0.95);
    background-color: rgb(var(--c3));
    border-color: rgb(var(--c3));
}

.topHeader {
    font-weight: 450;
    color: rgb(var(--c3));
    font-size: clamp(20px, 41px, 46px);
    margin: 0;
}

.timeTicker {
    font-weight: 500;
    color: rgb(var(--c3));
    font-size: clamp(19px, 3vmin, 34px);
    margin: 0;
}

/* news Stuff */

.newsTicker {
    color: rgb(var(--c3));
    padding: 11px;
    font-weight: 200;
}

.newsText {
    font-size: clamp(17px, 3vmin, 34px);
    margin: 0;
    float: left;
}

.newsHeader {
    font-size: clamp(22px, 5vmin, 44px);
    margin: 0;
    font-weight: 450;
}

.newsImage {
    border-radius: 7px;
    border: 4px solid rgb(var(--c1));
    margin-right: auto;
    width: 64vmin;
    height: 33.50vmin;
    float: right;
}

/* news Stuff Ends */

.baseContent {
    position: relative;
    border-radius: 6px;
    background-color: rgba(var(--c1), 0.55);
    width: 95%;
    height: 90%;
    z-index: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    transition: 0.3s ease;
    /* height: inherit; */
    border: 3px solid rgba(var(--c3), 0.33);
}

.forceClassesGrid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    place-items: center;
}

.smallProp {
    opacity: 0;
    transform: scale(0.95);
}

.forceTransition {
    transition: 0.25s ease;
}

.lineBreak {
    height: 1%;
    width: 100%;
    background-color: rgba(var(--c3), 0.85);
    margin-bottom: 0.5%;
    border-radius: 50% 1000% 1000% 50%;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.footer {
    background-color: rgba(var(--c1), 0.4);
    border-top: 3px solid rgb(var(--c1));
}

.footerAligner {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    height: 55%;
    background-color: rgba(var(--c3), 0.4);
    border: 4px solid rgb(var(--c1));
    border-radius: 6px;
}

.footerButton {
    width: 10vw;
    min-width: fit-content;
    height: 70%;
    background-color: rgb(var(--c1));
    color: rgb(var(--c3));
    margin-left: 1%;
    margin-right: 1%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border-radius: 5px;
    transition: 0.25s ease;
    font-size: clamp(14px, 1cqi, 18px);
    white-space: nowrap;
    text-align: center;
    scrollbar-color: rgb(var(--c3)) rgb(var(--c1));
}

.footerButtonB {
    width: 10vw;
    min-width: fit-content;
    height: fit-content;
    background-color: rgb(var(--c1));
    color: rgb(var(--c3));
    border: 2px solid rgb(var(--c3));
    margin-left: 1%;
    margin-right: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5%;
    border-radius: 5px;
    transition: 0.25s ease;
    font-size: clamp(14px, 1cqi, 18px);
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
}

.footerButtonB:hover {
    background-color: rgb(var(--c2));
    color: rgb(var(--c1));
    scale: 1.1;
}

.footerButtonB:active {
    background-color: rgb(var(--c2));
    scale: 0.95;
}

.footerButton::-webkit-scrollbar {
    scrollbar-color: rgb(var(--c3)) rgb(var(--c1));
    height: 10%;
}


.footerButton:hover {
    color: rgb(var(--c1));
    background-color: rgb(var(--c2));
    cursor: pointer;
    text-decoration: underline;
    transform: scale(1.1);
}

.footerButton:active {
    transform: scale(0.95);
    background-color: rgb(var(--c2)) !important;
    border-color: rgb(var(--c1));
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.deny {
    transform: none !important;
    opacity: 0.5;
    cursor: not-allowed !important;
}

.textOverride {
    color: white !important;
    mix-blend-mode: difference !important;
}