/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #6f00ff2f;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #940c94;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #eb0aff;
    cursor: var(--hover)
  }

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

@font-face {
  font-family: MostWanted;
  src: url(../src/fonts/mostwasted/Mostwasted.ttf);
}

@font-face {
  font-family: Metropolitan;
  src: url("../src/fonts/metropolitan/Metropolitan.ttf");
}

:root {
    --bg: #0c0f0a;
    --cian: #00ffcc;
    --pink: #ff00ff;
    --purple: #9042d7;
    --font: 'Share Tech Mono', monospace;
    --default: url(../src/img/c-default.png), auto;
    --hover: url(../src/img/c-pointer.png), auto;
}

  
*{
    cursor: var(--default);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100dvh;
    width: 100dvw;
    overflow-x: hidden;
    background-color: var(--bg);
    color: var(--cian);
    font-family: var(--font);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

header{
    position: absolute;
    top: 0;
    height: 70px;
    width: 100%;
    background-color: rgba(240, 248, 255, 0.068);
    border-bottom: var(--pink) 1px solid;
    padding-left: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    button{
        padding: 8px;
        border: solid var(--pink) solid 1px;
        color: #ff00ff;
        background-color: transparent;
        font-family: MontSerrat;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
    }

    button:hover{
        /* background-color: var(--pink); */
        color: aliceblue;
        border: var(--pink) solid 1px;
        border-radius: 6px;
        cursor: var(--hover);
    }
}

.nav{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 200px;
}

#logo{
    font-family: MostWanted;
    padding-right: 150px;
  }

  
.glitch {
    font-size: 3rem;
    font-weight: bold;
    position: relative;
    color: var(--pink);
    animation: glitch 0.5s infinite ease;
    text-transform: uppercase;
  }
  
  .glitch span {
    color: var(--cian);
  }

  
@keyframes glitch {
    0% {
      text-shadow: 2px 0 red, -2px 0 blue;
    }
    20% {
      text-shadow: -2px 0 blue, 2px 0 red;
    }
    40% {
      text-shadow: 2px 2px lime, -2px -2px purple;
    }
    60% {
      text-shadow: -2px -2px red, 2px 2px blue;
    }
    100% {
      text-shadow: 2px 0 red, -2px 0 blue;
    }
  }


  .login-btt{
    background-color: aliceblue;
    height: 3ch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .login-btt:hover{
    background-color: transparent;
    letter-spacing: 8px;
  }

  .content{
    background-color: rgba(240, 248, 255, 0.021);
    margin-top: 10vh;
    width: 80dvw;
    height: 90vh;
    border-left: #8f42d727 solid 1px;
    border-right: #8f42d727 solid 1px;
    overflow-x: hidden;
    overflow-y: scroll;
  }