
:root {
    --background-color: #0e0e0e;
    --content-background-color: #000000;
    --sidebar-background-color: #000000;
  
    --text-color:#eed4e2;
    --sidebar-text-color: #a77b96;
    --link-color: #d183aa;
    --link-color-hover: #9f6382;
  
    --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)
  }

.glow {
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

.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;
}


@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
  * {
    box-sizing: border-box;
  }
  
  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 {
    /* (Text highlighted by the user) */
    background: rgba(0, 0, 0, 0.2);
  }
  

  /* Links: */
  a {
    
      color: #e26ad8;
      text-decoration: none;
  }
  
  a,
  a:visited {
    color: var(--link-color);
  }
  
  .click:hover {
    text-decoration: underline;
    cursor: pointer;
  }

  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;
    }

  }