  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

html {
    cursor: url('https://cdn.glitch.global/27750893-542c-433c-b403-021579849b10/cursor.png?v=1685544259447'), default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #000;
      color: #fff;
      font-family: 'Consolas', monoscape; /* consolas n monoscape */
      overflow-y: hidden;
      overflow-x: hidden;
  }
  
  .buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 15px;
      font-size: 14px;
      font-weight: 400;
      color: #fff;
  }
  
  .buttons a {
      font-size: 18px;
      padding: 6px;
      border-radius: 100%;
      cursor: pointer;
      transition: 0.2s;
      color: #fff;
  }
  
  .buttons a:hover {
      opacity: 40%;
      font-size: 20px;
      color:rgba(255, 255, 255, 0.568);
  }
  
  .main {
      height: 1px;
      width: 100%;
      text-align: right;
      color: #f7f7f7eb;
      letter-spacing: 20px;
      z-index: 9999;
      font-size: 13px;
  }

  .small {
    color: #e8e8e899;
    font-size: 0.9rem;
    margin-left: 1;
  }
  
  .background {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -3;
   background-image: url('https://raw.githubusercontent.com/timokoz/portfolio-website/refs/heads/main/uploads/mirage.jpg?token=GHSAT0AAAAAACWJ7JPQWJTMXECWXN54M3GSZYJLZEQ');
  }
  
  #pattern {
    background: transparent url('https://cdn.glitch.global/27750893-542c-433c-b403-021579849b10/dot.png?v=1685543939859') repeat 0 0;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: -1;
    opacity: 1;
  }
  
  #pattern,
  #background {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  #background {
    z-index: -2;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 135%;
    min-height: 110%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    overflow: hidden;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
  }

.avatar {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 100%;
}

.sparkle {
    background-image: url(https://cdn.glitch.global/e9452870-30bc-4bb4-9786-712955e0ec62/sparkle_white.gif?v=1728566963548);
}