:root{
    --font-family: 'TheGoodMonolith', sans-serif; 
    --offwhite: #E6E2DF; 
    --red: #9F1C22;
    --white: #E8EBEA;
    --black: #222222;
    --blue: #201C41;
    --red: #FD4B3F;
    --bb: #EAE5D4;
    
}

 

::-webkit-scrollbar{
    display: none;
}


::selection{
    background: var(--bb);
    color: var(--red);
}


body{
   font-family: var(--font-family);
   font-size: 18px;
   color: white;
   text-shadow: 
        0.9px 1px 0 var(--blue),  /* Bottom-right shadow */
        -0.9px -1px 0 var(--red), /* Top-left shadow */
        -0.9px 1px 0 var(--black),  /* Bottom-left shadow */
        0.9px -1px 0 var(--bb);
   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;
}


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;
}


.metal{
    position: absolute;
    left: 65%;
    top: 33vh; 
    z-index: 10; 
}


.mememe{
    position: absolute;
    left: 65%;
    top: 33vh; 
    z-index: 9; 
}


.stars{
    position: absolute;
    right: 63%;
    top: 15vh; 
    z-index: 10; 
}



.container{
    width: 50vw;
    height: 80vh;
    background: linear-gradient(to bottom, var(--blue) 0%, var(--bb) 100%);
    background-image: url("https://i.postimg.cc/nL0SVwkw/dithered-image-18.png");
    background-repeat: no-repeat;
    background-size: cover;
    border: 5px double var(--red);
    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;
    
}


#overlay{
    position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 10%;
  z-index: -1;
  overflow: hidden;
}


.p {
  position: absolute;
  opacity: 0.9;
  filter: blur(0.8px);
}


.particle {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}


.tri {
  width: 180px;
  height: 180px;
  background: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 0 10px white);
}


.star {
  width: 105px;
  height: 105px;
  background: magenta;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%,
    68% 57%, 79% 91%, 50% 70%,
    21% 91%, 32% 57%, 2% 35%,
    39% 35%
  );
  filter: drop-shadow(0 0 10px magenta);
}


.cube {
  width: 90px;
  height: 90px;
  background: #ffd7b5;
  border-radius: 1px;
  filter: drop-shadow(0 0 10px #ffd7b5);
}


.dot {
  width: 72px;
  height: 72px;
  background: #3FFDDD;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px #3FFDDD);
}


.spark {
  width: 84px;
  height: 48px;
  background: #64b5ff;
  border-radius: 2px;
  transform: rotate(45deg);
  filter: drop-shadow(0 0 12px #64b5ff);
}


.gif{
  position: fixed;
  inset: 0;
  pointer-events: none; 
  z-index: -1;
  background: url('https://i.postimg.cc/3xhrGnMx/2d09f2844398497960c8a39c0693b16c.gif') center/cover no-repeat;
  opacity: 0.05; 
  mix-blend-mode: screen;
}


.gif2{
  position: fixed;
  inset: 0;
  pointer-events: none; 
  z-index: -1;
  background: url('https://i.postimg.cc/rsC4Gzp0/ba28a2a374d6385067b763d5437488f5.gif') center/cover no-repeat;
  opacity: 0.05; 
  mix-blend-mode: screen;
  filter: sepia(1) saturate(16) hue-rotate(-15deg) brightness(1.2);
}


.navbar {
    list-style: none;
    padding: 0;
    overflow-y: auto;
}


.navbar li {
    margin: 5px 0;
    text-shadow: none;
    background: var(--red);
    font-weight: bolder;
    border: 2px ridge var(--blue);
    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(--dgreen);
}


.navbar li:nth-child(odd) a {
    color: var(--dgreen); 
}


.navbar li:nth-child(even) a {
    color: var(--pink); 
}


.navbar li a:hover {
    color: var(--pink);
}


.two {
    grid-area: main;
    background: linear-gradient(to bottom, var(--black) 60%, var(--blue) 150%);
    border: 2px ridge var(--bb);
    padding: 10px;
    overflow-y: auto;
    height: 100%;
    border-radius: 5px;
    padding-right: 8%;
    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(--ruby),
        1px -1px 2px var(--grey),
        -1px 1px 2px var(--bor),
        2px 2px 2px var(--black), 
        -2px -2px 2px var(--bor);
}




