html {
    cursor:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>☁️</text></svg>") 16 0,auto; 
    width: 100%;
    height: 100%;
    font-family: "Computer Modern Sans", sans-serif;
    background-color: #EEEEEE;
    /* overflow-x: hidden;
    overflow-y: hidden; */
}
:root {
    --nav-width: max(4vw, 36px);
    --nav-font-size: calc(var(--nav-width) * .50)
}
body {
    padding: 0;
    margin: 0;
    border: 0;
}
a {
    display: block;
    width: 100%;
    height: 100%;
    /* cursor:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🐵</text></svg>") 16 0,auto; !emojicursor.app */
    cursor:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>⛈️</text></svg>") 16 0,auto;
}
a:link, a:visited {
    text-decoration: underline;
    color: black;
}
a.active {
    color: #EAEAEA;
}

/* Nav elements: */ /* #region */
.nav-l {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100%;
    padding: 0;
    margin: 0;
}
.nav-r {
    display: grid;
    grid-template-rows: repeat(3, auto);
    position: fixed;
    top: 0;
    right: 0;
    width: var(--nav-width);
    height: 100%;
    padding: 0;
    margin: 0;
}
.nav-box-l {
    transform-origin: top left;
    width: 50vh;
    height: var(--nav-width);
    transform: translate(0,50vh) rotate(-90deg);
    font-size: var(--nav-font-size);
    font-weight: 600;
    text-align: center;
    overflow: hidden;
}
.nav-box-r {
    margin: 0;
    transform-origin: top left;
    width: 33vh;
    height: var(--nav-width);
    transform: translate(var(--nav-width),0) rotate(90deg);
    font-size: var(--nav-font-size);
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.active {
    color: #EAEAEA;
    background-color: black;
}
.first-box {
    grid-row: 1;
}
.second-box {
    grid-row: 2;
}
.third-box {
    grid-row: 3;
}
.nav-link {
    text-decoration: none!important;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.ani {
    width: 100%;
    height: 100%;
    /* animation: scroll-animation 5s linear infinite; */
    animation: scroll-animation 5s ease-out;
}
.scroll {
    width: 100%;
    height: 100%;
    animation: scroll-animation 5s linear infinite;
}
.scroll:hover {
    width: 100%;
    height: 100%;
    animation: scroll-animation 5s linear infinite reverse;
}
@keyframes scroll-animation {
    0% {
        transform: translate(0, 100%);
    }
    100% {
        transform: translate(0, 0);
    }
}
.ani-0 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: calc( -1* var(--nav-width));
    /* display: flex;
    align-items: center; */
}
.ani-1 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* display: flex;
    align-items: center; */
}
.ani-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: var(--nav-width);
    /* display: flex;
    align-items: center; */
}

/* Force raining cloud cursor for all nav elements and their children */
.nav-r, .nav-r * {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>⛈️</text></svg>") 16 0, auto !important;
}
.nav-l, .nav-l * {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>⛈️</text></svg>") 16 0, auto !important;
}

/* #endregion */
/* Content elements: */ /* #region */
.content-box-simple {
    position: absolute;
    left: var(--nav-width);
    right: var(--nav-width);
    height: 100%;
}

.content-box-border {
    /* border-left: solid black 1px; */
    border-right: solid black 1px;
    position: absolute;
    padding: 10px;
    left: var(--nav-width);
    right: var(--nav-width);
    min-height: 100%;
}
.content {
    display: grid;
    position: absolute;
    top: 0;
    left: var(--nav-width);
    right: var(--nav-width);
    padding: 0;
    margin: 0;
    border: 0;
    height: 100vh;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 10px;
}

/* #endregion */