:root{
    --font-family: 'TheGoodMonolith', sans-serif; 
    --offwhite: #E6E2DF; 
    --pink: #E4CDD5;
    --red: #9F1C22;
    --sonicred: #D9344C;
    --sonic: #0470BB;
    --yellow: #FDD33F;
    --silver: #9FFFED;
}


::-webkit-scrollbar{
    display: none;
}


::selection{
    background: var(--yellow);
    color: var(--sonicred);
}


body{
   font-family: var(--font-family);
   font-size: 18px;
   color: white;
   text-shadow: 
        0.9px 1px 0 var(--silver),  /* Bottom-right shadow */
        -0.9px -1px 0 var(--sonic), /* Top-left shadow */
        -0.9px 1px 0 var(--yellow),  /* Bottom-left shadow */
        0.9px -1px 0 var(--sonic);
   background-image: url("https://i.postimg.cc/WzyL3GS2/abstract-horizontal-grid-lines-graph-style-graphic-design-1017-39918.png");
   background-repeat: no-repeat;
   background-size: cover;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
}


.sonc{
    position: absolute;
    margin-left: 60%;
    margin-top: 24vh; 
    z-index: 10; 
    animation: float 2s ease-in-out infinite;
}


.back{
    position: absolute;
    margin-left: 60%;
    margin-top: 37vh; 
    z-index: 9; 
}


@keyframes float {
    0% {
        transform: translateY(0); /* Starting position */
    }
    50% {
        transform: translateY(-20px); /* Move up 10px */
    }
    100% {
        transform: translateY(0); /* Move back to the original position */
    }
}


.heart{
    position: absolute;
    margin-left: 50%;
    margin-bottom: 49vh; 
    z-index: 7; 
}


.silv{
    position: absolute;
    margin-right: 51%;
    margin-top: 37vh; 
    z-index: 10; 
}


.flow{
    position: absolute;
    margin-right: 51%;
    margin-top: 37vh; 
    z-index: 9; 
    transform: rotate(100deg);
}


.shell{
    position: absolute;
    margin-right: 80%;
    margin-top: 22vh; 
    z-index: 9; 
    transform: rotate(-10deg);
}


.aloha{
    position: absolute;
    margin-right: 76%;
    margin-top: 55vh; 
    z-index: 9; 
    transform: rotate(-10deg);
}


.container{
    width: 50vw;
    height: 80vh;
    background: linear-gradient(to bottom, var(--silver) 0%, var(--sonic) 100%);
    border: 5px double var(--silver);
    border-radius: 10px;
    display: grid;
    gap: 10px;
    padding: 10px;
    margin-top: 10px;
    grid-template-areas: 
        "logo header"
        "sidebar main"
        "sidebar main"
        "sidebar content";
    grid-template-columns: 0.8fr 3fr;
    grid-template-rows:  1fr 13fr 2fr;
}


.logo{
    width: 10ch;
    margin-top: 0.5ch;
    filter: hue-rotate(180deg) brightness(1.8);
}


.sidebar {
    margin-top: -2ch;
    margin-left: -1ch;
    gap: 10px;
    grid-area: sidebar;
    padding: 10px;
    display: flex;
    flex-direction: column;
    
}


.navbar {
    list-style: none;
    padding: 0;
    overflow-y: auto;
}


.navbar li {
    margin: 5px 0;
    text-shadow: none;
    background: linear-gradient(to bottom, var(--yellow) 5%, var(--sonicred) 90%);
    font-weight: bolder;
    border: 2px ridge var(--yellow);
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; 
    gap: 15px;
}


.navbar li a {
    text-decoration: none;
    flex-grow: 1;
    font-size: 20px;
    color: var(--yellow);
}


.navbar li:nth-child(odd) a {
    color: var(--yellow); 
}


.navbar li:nth-child(even) a {
    color: var(--silver); 
}


.navbar li a:hover {
    color: var(--sonicred);
}


.two {
    grid-area: main;
    background-color: var(--offwhite);
    border: 2px ridge var(--silver);
    padding: 10px;
    overflow-y: auto;
    height: 100%;
    border-radius: 5px;
    padding-right: 25%; /*CHANGE THIS IF THE IMG ON THE RIGHT CUTS TOO MUCH SPACE OFF*/
    padding-left: 2.5%;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


p{
    line-height: 1.5;
}


h1{
    font-size: 50px;
    text-shadow: 
    1px 1px 2px var(--black),
        -1px -1px 2px var(--black),
        1px -1px 2px var(--black),
        -1px 1px 2px var(--black),
        2px 2px 2px var(--black), 
        -2px -2px 2px var(--black);
}


a, a:visited{
    text-decoration: none;
    color: var(--silver);
}


a:hover{
    color: var(--sonicred);
}

