/*###################################### */
/*--- --- --- cogito ergo es --- --- --- */
/*###################################### */
:root {
    --text-color: white;
    --main-color: #0026ff;
    --border-color: white;
    --main-color-opposite: #8ace00;
}

.darkmode {
    --text-color: black;
    --main-color: #8ace00;
    --border-color: black;
    --main-color-opposite: #0026ff;
}

@font-face {
    font-family: "GM";
    src: url("font/GM.ttf") format("truetype");
}

@font-face {
    font-family: "IS";
    src: url("font/IS.ttf") format("truetype");
}

body {
    background-color: var(--main-color);
    color: var(--text-color);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    position: relative;
    font-family: "GM";
    font-weight: normal;
}

body::before,
body::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: -1;
}

body::before {
    top: 0;
    background-image: url("image/out2.webp");
    mask-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

body::after {
    bottom: 0;
    background-image: url("image/fallofrome.webp");
    mask-image: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

/*############################################## */
/*true blue sky spread as far as the eye can see */
/*############################################## */

.screen {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.sprint {
    background-color: var(--main-color);
    height: 20px;
    font-size: 10px;
    margin: 0px;
    padding-top: 0px;
    border-width: 1px;
    border-color: var(--border-color);
    border-style: solid;
    display: flex;
    flex-direction: row;
}

#theme-switch {
    height: 100%;
    width: 100px;
    padding: 0;
    border: 0;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    display: flex;
}
#theme-switch:hover {
    background-color: var(--main-color-opposite);
}
#theme-switch svg:last-child {
    display: none;
}
.darkmode #theme-switch svg:first-child {
    display: none;
}
.darkmode #theme-switch svg:last-child {
    display: block;
}

.sprint a {
    color: var(--border-color);
    text-decoration: none;
    padding-top: 3px;
    padding-bottom: 4px;
}

.sprint a:hover {
    color: var(--main-color);
    background-color: var(--border-color);
}

.sprint-prox {
    height: 100%;
    width: 120px;
    color: var(--border-color);
    text-decoration: none;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    text-align: center;
    justify-content: center;
    display: flex;
}

#running-text-container {
    float: left;
    width: 100%;
    overflow: hidden;
    height: 100%;
    position: relative;
    display: flex;
}

.running-text {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    animation: marquee 30s linear infinite;
    color: var(--text-color);
    padding-top: 3px;
    margin-top: 0;
    margin-bottom: 0;
}

.running-text-item {
    color: var(--text-color);
    text-decoration: none;
    padding: 0 1em;
}

.running-text-item:hover {
    text-decoration: underline;
}

.text-separator {
    padding: 0 1em;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.server-status {
    margin: 0;
    text-align: right;
    width: 100%;
}

.logo {
    height: 100px;
    width: 60px;
}

.banner {
    height: 35vh;
    width: 100%;
    display: flex;
    flex-direction: row;
}

#logodiv {
    width: 50vw;
    margin-top: auto;
}

#textdiv {
    height: 40px;
    width: 50vw;
    text-align: right;
    margin-top: auto;
    font-size: 2em;
}

.highlights {
    display: flex;
    flex-direction: row;
}

.highlights-item {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-color: var(--border-color);
    text-align: right;
    border-style: solid;
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
    overflow: hidden;
}

.eye {
    object-fit: contain;
    width: 100%;
    height: 30vh;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    pointer-events: none;
}

.prox {
    object-fit: contain;
    width: 100%;
    height: 30vh;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    pointer-events: none;
}

.darkmode .logo,
.darkmode .eye,
.darkmode .prox {
    filter: invert(1);
}

.high-txt {
    margin: 0px;
    border-width: 1px;
    border-color: var(--border-color);
    text-align: right;
    border-style: solid;
}
.high-sub {
    margin: 0px;
}
.high-tit {
    margin: 0px;
    font-weight: normal;
}

/*#################################### */
/*welcome to the bikini bottom of 0110 */
/*#################################### */

#punchline {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
}

#punch-txtl {
    width: 50vw;
    text-align: left;
    font-family: IS;
}

#punch-txtr {
    width: 50vw;
    text-align: right;
    font-family: IS;
}

#footer {
    color: var(--text-color);
    width: 100%;
    font-weight: normal;
    font-family: IS;
    position: fixed;
    left: 0;
    bottom: 0;
    margin-bottom: 0px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px;
    align-items: center;
}

#typewriter {
    font-size: 16px;
    font-weight: normal;
    grid-column: 1 / 4;
    grid-row: 1;
    height: 25px;
    margin: 0px;
}

#ftxt-1 {
    grid-column: 1;
    grid-row: 2;
    color: var(--border-color);
    width: 100%;
    text-decoration: none;
}

#ftxt-2 {
    grid-column: 2;
    grid-row: 2;
    color: var(--border-color);
    width: 100%;
}

#ftxt-3 {
    grid-column: 3;
    grid-row: 2;
    color: var(--border-color);
    width: 100%;
    text-decoration: none;
}

#ftxt-1:hover,
#ftxt-2:hover,
#ftxt-3:hover {
    color: var(--main-color);
    background-color: var(--border-color);
    background-size: 10px 10px;
}

/*######################################### */
/*you're still scrolling? come work with us */
/*--- --- --- Telegram | @augmc --- --- --- */
/*--- --- --- --- - DM ME - --- --- --- --- */
/*######################################### */
