* {
    --color5: yellow; /* yellow */
    --color4: #a682ffff; /* light purple */
    --color3: #715affff; /* purple-blue */
    --color2: #5887ffff; /* dark sky blue */
    --color1: #55c1ffff; /* sky blue */
    --color0: #102e4aff; /* deep space blue */

    box-sizing: border-box;
}

body {
    background-image: url("background.jpg");
    image-rendering: crisp-edges;
    background-size: cover;
    background-color: #000;
    color: white;
    font-family: "Arial";
    display: flex;
    justify-content: center;
    font-size: 12px;
}

#splash-text {
    color: var(--color5);
}

#container {
    width: 800px;
    max-height: 0;
}

#container-header {
    width: 100%;
    height: 30px;
    background-color: var(--color0);
    border-radius: 4px;
    border: 1px solid black;
    box-shadow: -4px 4px 0 0 black;
}

#header {
    padding: 2px 4px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
}

#banner-container {
    height: 350px;
}

#main-container {
    width: 100%;
    height: 1000px;
    background-color: transparent;
}

#container-top {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: transparent;
    box-shadow: -4px 4px 0 0 black;
}

#top {
    padding: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: var(--color0);
    clip-path: polygon(0 0, 20% 0, 25% 76%, 100% 76%, 100% 100%, 0 100%);
}

h1 {
    font-style: italic;
    margin-top: 9px;
    margin-left: 10px;
}

#container-nav {
    border: 1px solid black;
    position: absolute;
    bottom: 23.25%;
    right: 1%;
    width: 75.3%;
    height: 38%;
    transform: skewX(47deg);
    background-color: var(--color0);
}

#container-nav nav {
    height: 100%;
    width: 100%;
}

#container-nav ul {
    list-style-type: none;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 2px;
}

#container-nav li {
    width: 100%;
    height: 100%;
    border-right: 1px solid black;
}

#container-nav a {
    cursor: pointer;
    text-align: center;
    display: block;
    transition: background-color 0s ease;
    color: var(--color5);
}

#container-nav span {
    display: inline-block;
    font-weight: bold;
    transform: skewX(-47deg);
}

.nav-item a:hover {
    background-color: var(--color1);
}

.scroll-container {
    margin-top: 10px;
    padding-top: 2px;
    width: 100%;
    height: 1.5em;
    background-color: #000000BB;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 10s linear infinite;
    font-style: italic;
    color: grey;
}

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

#container-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#container-middle {
    margin-top: 5px;
    width: 70%;
}

#container-right {
    margin-top: 5px;
    width: 30%;
}

.container-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#container-welcome {
    width: 100%;
    height: 400px;
}

.box-label {
    display: inline-block;
    background-color: var(--color0);
    padding: 0 5px;
    padding-right: 30px;
    padding-top: 5px;
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0, /* move corner up by 20px */
        100% 100%, /* move corner left by 20px */
        0 100%
    );
    box-shadow: -4px 4px 0 0 black;
}

.box {
    border: 5px solid var(--color0);
    width: 100%;
    height: 100%;
    box-shadow: -4px 4px 0 0 black;
    background-color: #000000BB;
    padding: 0px 10px;
}

.highlight {
    color: var(--color5);
}

#container-message {
    margin-top: 25px;
    width: 50%;
    height: 200px;
}

#message-box form {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

#message-box label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

button {
    background-color: var(--color0);
    border: 1px solid black;
    color: var(--color5);
    font-weight: bold;
    transition: background-color 0s ease;
}

button:hover {
    background-color: var(--color1);
}

#container-note {
    margin-top: 25px;
    width: 50%;
    height: 200px;
}

#container-draw {
    margin-top: 25px;
    width: 100%;
    height: 200px;
}

#container-status {
    width: 100%;
    height: 50px;
}

#container-systems {
    margin-top: 25px;
    width: 100%;
    height: 200px;
}

#container-commits {
    margin-top: 25px;
    width: 100%;
    height: 200px;
}

#container-notepad {
    margin-top: 25px;
    width: 100%;
    height: 200px;
}

