
:root {
    --background-color: #0b0b0b;
    --content-background-color: #0b0b0b;
    --sidebar-background-color: #0b0b0b;
  
    --text-color:#cfbeab;
    --link-color: #85715b;
    --link-color-hover: #504132;
  
    --font: Courier New, monospace;
    --heading-font: Lucida Console, monospace;
    --font-size: 15px;
  
    --margin: 20px;
    --padding: 25px;
    --border: 2px solid #292929;
    --round-borders: 0px;
    --sidebar-width: 200px;
  }

  #typewriter {
    color: var(--sidebar-text-color)
  }

.mmm {
      mix-blend-mode:luminosity;
      opacity: 50%;
  padding: 10px;

}
.swiper {
  width: 290px;
  height: 290px;
  }
  
  .heade-bg {
background-image: url('./img/0ba90d600956c6ecb1de2b99728b3824.jpg');
  }

.exp-box {
  padding: 5px;
  border: 1px solid #464646;
}

  body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-size: var(--font-size);
    margin: 0;
    padding: var(--margin);
    color: var(--text-color);
    font-family: var(--font);
    line-height: 1.2;
    background: var(--background-color);
    background-image: url("");
    
  }
  
  ::selection {
    background: rgba(0, 0, 0, 0.2);
  }
  
tbody{       

  max-height: 500px;        
  overflow-x: auto;
}
  /* Links: */
  a {
    
      color: #e26ad8;
      text-decoration: none;
  }
  
  a,
  a:visited {
    color: var(--link-color);
  }

  .click {
    color: white;
  }


  th, td {
  border: 1px solid rgb(39, 39, 39);
    animation: colorRotate 6s linear 0s infinite;
   
  padding: 5px;
}
  
@keyframes colorRotate {
  from {
    color: #6666ff;
  }
  10% {
    color: #0099ff;
  }
  50% {
    color: #00ff00;
  }
  75% {
    color: #ff3399;
  }
  100% {
    color: #6666ff;
  }
}

p {
  color: var(--text-color);
  font-family: var(--font);
  font-size: var(--font-size);
}

.on {
    animation: colorRotate 6s linear 0s infinite;
    color: var(--text-color);
  font-family: var(--font);
  font-size: var(--font-size);
}


  .click:hover,.off:hover {
    text-decoration: underline;
    cursor: pointer;
        font-weight: bolder;
    -webkit-transition: 130ms linear;
    transition: 130ms linear;
  }

  #rbgBtn:hover {
    text-decoration: underline;
    cursor: pointer;
        font-weight: bolder;
    -webkit-transition: 130ms linear;
    transition: 130ms linear;
  }
  a:hover {
    font-weight: bolder;
    -webkit-transition: 130ms linear;
    transition: 130ms linear;
  }

  .layout {
    width: 1000px;
    display: grid;
    grid-gap: var(--margin);
    grid-template: "header" auto "main" auto "footer" auto / auto;
  }

  @media (max-width: 800px) {
    body {
      font-size: 14px;
    }
  
    .layout {
      width: 100%;
      grid-template: "header" auto  "leftSidebar" auto "main" auto "footer" auto / 1fr;
    }

  }