/* Universal */
*, *L::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Root */
:root {
    /* Edge of Sky */
    --edge-sky-clr: (#223e42, #017381, #569da6);
}
@font-face {
    font-family: 'Neon';
    src: url(/assets/neospace/Neospace-Expanded.ttf);
}
/* HTML */
html {
    scroll-behavior: smooth; 
}
body {
    background: url(/img/mystic-clouds.jpg);
    background-color: #0b1213;
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    font-family: 'Neon', sans-serif;
}
body > h1 {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 7rem;
    text-align: center;
    text-shadow: 1px 0px 1px white;
}
/* Mass Container Area */
.mass-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.left-panel {
    width: 25%;
    height: 100vh;
    margin-left: 0;
    margin-right: auto;
    background-color: #569da6;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}
.left-panel button {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Neon', sans-serif;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 400ms ease;
}
.left-panel button:hover {
    transform: scale(110%);
}
.left-nav-cont {
    position: relative;
    padding: 2rem;
    text-align: center;
}
.left-nav-cont > div {
    margin-bottom: 5rem;
}
.left-panel-sub {
    display: none;
    flex-direction: column;
    height: auto;
    position: absolute;
    left: -350;
    width: fit-content;
    padding: .5rem;
}
.left-panel-sub.transition {
    transition: 700ms;
    left: 350px
}
.left-panel-sub a, .left-panel-sub a:visited {
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    display: block;
    margin-bottom: 2rem;
}
.right-panel {
    width: 25%;
    height: 100vh;
    margin-left: auto;
    margin-right: 0;
    background-color: #569da6;
}