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

:root {
    --background-color: #0e0e0e;
    --foreground-color: #222222;
    --light-foreground: #919191;
    --font-color: #d2d2d2;
}

 
body {
    color: var(--font-color); 
    font-family: 'Poppins', "sans-serif";
    font-size: 22px;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    position: fixed;
}

img {
    max-width: 100%;
    max-height: 100%;
}

canvas {
    max-width: 100%;
    max-height: 100%;
    opacity: 1;
}


.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--foreground-color);
  width: 200px;
  height: 110px;
  border-radius: 15px;
  opacity: 1;
  transition: background-color ease-in;
}

.button:hover{
  background-color: var(--light-foreground);
  color: var(--foreground-color);
}

.button.starts {
  opacity: 0;
}

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

.button1 {
  position: absolute;
  top: 20%;
  transform: translate(-50%, -50%);
}

.button2 {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.button3 {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translate(50%, -50%);
}


#text {
    position: absolute;
    color: var(--font-color);
    bottom: 20%;
    justify-content: center;
    font-size: 15px;
}


.name-wrapper {
    position: absolute;
    width: 360px;
    height: 180px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.name {
    position: absolute;
    font-weight: 800;
    font-size: xx-large;
    text-align: center;
    color: var(--font-color);
    justify-content: center;
}

.name p {
    font-size: medium;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}



/* moving list */
.tag-list {
    width: 100rem;
    max-width: 100vw;
    display: flex;
    position: absolute;
    bottom: 1vh;
    flex-shrink: 0;
    gap: 1rem 0;
    padding: 1.5rem 0;
    overflow: hidden;
  }
  
  .tag-list::before,
  .tag-list::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15rem; 
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .tag-list::before {
    left: 0;
    background: linear-gradient(to right, var(--background-color), rgba(255, 255, 255, 0));
  }
  
  .tag-list::after {
    right: 0;
    background: linear-gradient(to left, var(--background-color), rgba(255, 255, 255, 0));
  }
  
  
  .loop-slider {
    .inner {
      display: flex;
      width: fit-content;
      animation-name: loop;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      animation-direction: var(--direction);
      animation-duration: var(--duration);
    }
  }
  
  .tag {
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    color: var(--font-color);
    font-size: 0.9rem;
    background-color: var(--foreground-color);
    font-weight: 600;
    border-radius: 0.4rem; 
    padding: 0.7rem 1rem;
    margin-right: 1rem; 
    box-shadow: 
      0 0.1rem 0.2rem rgb(0 0 0 / 20%),
      0 0.1rem 0.5rem rgb(0 0 0 / 30%),
      0 0.2rem 1.5rem rgb(0 0 0 / 40%);
    span {
      font-size: 1.2rem;
      color: var(--font-color);
    }
  }
  
  
  @keyframes loop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50%));
    }
  }

