:root{
    --font-family: 'TheGoodMonolith', sans-serif; 
    --offwhite: #E6E2DF; 
    --white: white;
    --pink: #FBB6CE;
    --red: #E63F3F;
    --blue: #64B4EE;
    --green: #38A169;
    --dgreen: #2F855A;
}


@font-face {
    font-family: 'Sonic2Menu';
    src: url('https://ithaqualover.github.io/sonic-font/Sonic2Menu.ttf'
    ) format('truetype');
}
@font-face {
    font-family: 'Sonic2Menu2';
    src: url('https://ithaqualover.github.io/sonic-font/Sonic2Menu2.ttf'
    ) format('truetype');
}


::-webkit-scrollbar{
    display: none;
}


::selection{
    background: var(--green);
    color: var(--blue);
}


body{
   font-family: var(--font-family);
   font-size: 18px;
   color: var(--green);
   text-shadow: 
        0.9px 1px 0 var(--pink),  /* Bottom-right shadow */
        -0.9px -1px 0 var(--red), /* Top-left shadow */
        -0.9px 1px 0 var(--blue),  /* Bottom-left shadow */
        0.9px -1px 0 var(--dgreen);
   
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
}


body::before {
    content: "";
    position: fixed;
    inset: 0;
    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;
    filter: invert(1);
    z-index: -1; 
    pointer-events: none;
}


.silvy{
    position: absolute;
    margin-left: 51%;
    margin-top: 32vh; 
    z-index: 10;
}


.shady{
    position: absolute;
    pointer-events: none;
    margin-right: 51%;
    margin-top: 38vh; 
    z-index: 10;
}


.gif-overlay{
  position: fixed;
  inset: 0;
  pointer-events: none; 
  z-index: -1;
  background: url('https://i.postimg.cc/m2DZK30m/fd4cf639800e19abeb6b64dce894beec.gif') center/cover no-repeat;
  opacity: 0.13; 
  mix-blend-mode: screen;
  filter:
  grayscale(0)
  sepia(1)
  hue-rotate(300deg)   
  saturate(4)
  brightness(1.4)
  contrast(1.2);
}


.container{
    width: 50vw;
    height: 80vh;
    background: linear-gradient(to bottom, var(--green) 0%, var(--dpink) 100%);
    background-image: url("https://i.postimg.cc/fRN2J5DF/dithered-image-14.png");
    background-repeat: no-repeat;
    background-size: cover;
    border: 5px groove var(--dgreen);
    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;
   
   
}


.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(--green) 5%, var(--blue) 90%);
    font-weight: bolder;
    border:2px ridge var(--pink);
    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(--pink);
}


.navbar li:nth-child(odd) a {
    color: var(--green); 
}


.navbar li:nth-child(even) a {
    color: var(--blue); 
}


.navbar li a:hover {
    color: var(--red);
}


.two {
    grid-area: main;
    background-color: var(--offwhite);
    border: 3px ridge var(--pink);
    padding: 10px;
    overflow-y: auto;
    height: 100%;
    border-radius: 5px;
    padding-right: 17%; /*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; /*??? WHY IS THE LOGO A h1 - delete this and your site breaks*/
}


.double-font {
    position: relative;
    display: inline-block;
    font-size: 38px; /*doesnt fucking matter anyway brother your h1 size is tied to logo*/
}
  

.font-top, .font-bottom {
    position: absolute;
    top: -0.5ch;
    line-height: 1;
}
  

.font-top {
    font-family: 'Sonic2Menu'; 
    color: black;
    text-shadow: none;
    z-index: 2;
}
  

.font-bottom {
    font-family: 'Sonic2Menu2'; 
    color: white;
    text-shadow: none;
    z-index: 1;
}
  

a, a:visited{
    text-decoration: none;
    color: var(--yellow);
}


a:hover{
    color: var(--bluelight);
}
