/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 UNIVERSAL
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  background-color: #000000;
  color: #e0e0e0;
  font-family: monospace;
  display: flex;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;

}

a {
  color: #f5f5f5;
  text-decoration: underline;
  text-shadow: 0 0 7px #ffffff;
  font-size: 16px;
}

p {
  font-size: 16px;
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-size: 20px;
}


/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 TEXT EFFECTS
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/
.rainbowtext {
  background: linear-gradient(
    to right, 
    #ff0000, 
    #ff7f00, 
    #ffff00, 
    #00ff00, 
    #0000ff, 
    #4b0082, 
    #8b0083
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.lowtext {
  font-size: 0.75rem;
  color: #6b6b6b;
}


.neontext {  
  color: #f5f5f5;
  text-shadow: 0 0 7px #ffffff;}



/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 LAYOUT
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/ 

.container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  
}

.header, .nav, .sidebar, .content, .contentli, .footer {
  border: 1px solid #333;
  padding: 15px;
  background-color: #000000;
  position: relative;
}

.nav {
  display: flex;
  gap: 15px;
}


.main-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 15px;
}



/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 SCROLLBAR
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

::-webkit-scrollbar {
  width: 5px; 
  height: 5px; 
  scrollbar-gutter: stable;
}

::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #131313;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #181818;
}



/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 RESPONSIVE
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

@media (max-width: 768px) {
  .main-wrapper {
    grid-template-columns: 1fr !important;
  }

  .sidebar, .content, .contentli {
    width: 100% !important;
    box-sizing: border-box;
  }

  .pfp-img {
    width: 150px;
    height: 150px;
  }
}