html {
  scrollbar-color: var(--my-color) var(--background);
  overflow-x: hidden;
  background-color: var(--background);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.main,
.title-bar,
.header,
.bottom {
  transition: 
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}

.page {
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.page.active {
  display: block;
  opacity: 1;
}
/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  font-family: var(--font), serif;
  font-size: clamp(24px, 6vw, 96px);
  text-align: center;
  text-shadow: none;
}


.header a {
  text-decoration: none;
  color: var(--my-color);
}

.header p {
  margin: 0;
}

footer {
    text-align: center;
    color: var(--my-color)
}



/* Main Part */
.menu {
  width: 1000px;
  margin: 0 auto; 
  padding: 10px;

  display: grid;
  grid-template-columns: 300px 1fr; 
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 10px;
}

.menu .menumain .container h2{
    margin-bottom: 5px;
}
.menu-main {
  grid-column: 2;
  grid-row: 1 / span 4;
  border: 2px solid var(--my-color);
  height: 706px;
  display: flex;
  flex-direction: column;
}

.menu-main .content,
#main-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}


.menu-main p{

  color: var(--my-color);
  font-size: 18px;
  margin: 1;
}

.menu-main h6{
  
  color: var(--my-color);
  font-size: 12px;
}

.menu-main h1{
  
  color: var(--my-color);
  font-size: 2rem;
}

.title-bar {
  background: linear-gradient(to right, var(--my-color), var(--background));
  
  color: var(--background);
  padding: 6px 6px;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
}

.content {
  padding: 10px;
}

/* MenuMain News and MV */

.news {
  border: 2px solid var(--my-color);
  display: flex;
  flex-direction: column;
}

.newstitle , .MVtitle{
  background: linear-gradient(to right, var(--my-color), var(--background));
  color: var(--background);
  
  font-size: 16px;
  padding: 6px;
  font-weight: bold;
}

.newscontent {
  max-height: 130px; 
  overflow-y: auto; 

  color: var(--my-color);
  font-size: 16px;
}

.MusicVideo {
  border: 2px solid var(--my-color);
  margin: 0 auto; 
  max-width: 520px;   
  display: flex;
  flex-direction: column;
}

.MVcontent {
  padding: 10px;
}

/* CD Collection */

.CD {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 12px;
  margin-top: 14px;
}

.AlbumCD {
  border: 2px solid var(--my-color);
  padding: 6px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease;
}


.AlbumCD img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--my-color);
}

.cdtitle, .cdartist{
  margin-top: 6px;
  
  font-size: 14px;
  color: var(--my-color);
  text-align: center;
}
 
/* Webmaster */
.about {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  align-items: center; 
}

.pfp {
  width: 160px;
  height: 160px;
  border: 2px solid var(--my-color);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.Mii-silly {
  opacity: 0;
}

.pfp:hover .Mii-silly {
  opacity: 1;
}

.pfp:hover .Mii-normal {
  opacity: 0;
}

.abtme {

  color: var(--my-color);
  font-size: 16px;
  margin: 0; 
}
.socials-fav {
  display: flex;
  gap: 20px;
}

.socials-fav > div {
  flex: 1;
}

.socials-fav > div + div {
  border-left: 1px solid var(--my-color);
  padding-left: 14px;
}

.socials-fav a, p, h1, h2, h3 {
  color: var(--my-color);
}

.webrings {
  display: grid;
  grid-template-columns: repeat(2fr, 1fr); 
  margin-top: 10px;
}

/* Navbar*/

.nav {
  grid-column: 1;
  grid-row: 1;
  border: 2px solid var(--my-color);
}

.nav ,.status .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
}

.navbar {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
}

.navbar a {
  color: var(--my-color);
  
  font-size: 22px;
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0px;
  transition: 
    transform 0.4s ease,
    letter-spacing 0.4s ease;
}

/* Buttons */
.button {
  grid-column: 1;
  grid-row: 3;
  border: 2px solid var(--my-color);
}
.button .content {
    display: flex;
    align-items: center;   
    gap: 10px;       
    justify-content: center;    
}


.button p{
  
  color: var(--my-color);
  font-size: 16px;
}

.button .content textarea {
    width: 88px; 
    box-sizing: border-box;
    resize: none;
}

/*Status*/
.status {
    grid-column: 1;
    border: 2px solid var(--my-color);
    margin-bottom: 10px; 
}


#statuscafe {
  
  font-size: 12px;
  color: var(--my-color);
}

#statuscafe-username a{
    
    color: var(--my-color);
    font-size: 16px;
    transition: 
    transform 0.4s ease,
    letter-spacing 0.4s ease;
}

#statuscafe-username h1{
    
    color: var(--my-color);
    font-size: 18px;
    transition: 
    transform 0.4s ease,
    letter-spacing 0.4s ease;
}

#statuscafe-content {
    
    color: var(--my-color);
    font-size: 16px;
}


/* LastFM */
#lastcont {
    display: grid;
    grid-template-columns: 1fr 1fr;
}


#listening p {
  
  font-weight: bold;
  color: var(--my-color);
  font-size: 19px;
  margin: 0;
}

#listening h3 {

  color: var(--my-color);
  font-size: 15px;
  margin: 0;
}

#listening img {
  width: 95px;
  height: 95px;
  border-radius: 4px;
  border: 1px solid var(--my-color);
  transition: transform 0.2s ease;
  
}

/*Buttons Lines thanks to koba.nekoweb.org*/
.marquee {
  border: 2px solid var(--my-color);
  width: 997px;
}

.marquee-items {
  display: flex;
  flex-shrink: 0;
  height: 100%; 
  min-width: 100%;
  position: relative;
}


.marquee-items > * {
  margin: 5px;
  height: 31px;
}

.scroll-r2l {
  animation: scroll-r2l 20s linear infinite;
}
       
.paused {
  -webkit-animation-play-state:paused;
  -moz-animation-play-state:paused;
  -o-animation-play-state:paused;
  animation-play-state:paused;
}
/*wallah mais quelle bordel putain */


* {
  font-family: "Courier New", monospace !important;
  transition: 
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

a {
  color: #3ce23e !important;
}

:root {
  --background: #000000;
  --font: "Courier New", monospace;
  --my-color: #1ead21;
}

.disabled {
    color:#0d4b0e !important;
    text-decoration: none !important;
    cursor: default !important;
}



