body {
  color: #fff;
  text-align: center;
}

.container {
  top: 10vw;
  position: relative;
  margin-bottom: 13vw;
}

.tabs {
  transform: translateY(-1vw);
  font-size: 1.5vw
}

.tabs a {
  color: #fff;
  padding: 1vw 2.8vw;
  margin: 0.5vw;
  text-decoration: none;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.0075);
  backdrop-filter: blur(0.15vw);
  border-radius: 3vw;
    box-shadow: 0.25vw 0.25vw 0.5vw 0vw rgba(0, 0, 0, 0.25);
}

.tabs a.active {
  background-color: rgb(255 255 255 / 7%);
}

.fan-card {
  margin: 1vw auto;
  padding: 1vw 2vw;
  width: 40%;
  border-radius: 1vw;
  display: flex;
  align-items: center;
  gap: 2vw;
  font-size: 1.25vw;
  color: white;
  box-shadow: 0.25vw 0.25vw 0.5vw 0vw rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.0075);
  backdrop-filter: blur(0.15vw);
  border-radius: 3vw;
  justify-content: space-between;
}

.user_name {
  margin-right: 3vw;
  text-align: left;
  width: 10vw;
}

.timer {
  font-size: 2vw;
  margin-top: 2vw;
  color: #aaa;
}



@media (max-width: 768px) {
  
  .container {
    top: 30vw;
    position: relative;
  }
  
  .tabs {
    transform: translateY(-5vw);
    font-size: 6vw
  }
  
  .tabs a {
    color: #fff;
    padding: 2vw 4vw;
    margin: 0.5vw;
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.0075);
    backdrop-filter: blur(0.15vw);
    border-radius: 3vw;
      box-shadow: 0.25vw 0.25vw 0.5vw 0vw rgba(0, 0, 0, 0.25);
  }
  
  .tabs a.active {
    background-color: rgb(255 255 255 / 7%);
  }
  
  .fan-card {
    margin: 1vw auto;
    padding: 4vw 5vw;
    width: 85%;
    border-radius: 1vw;
    display: flex;
    align-items: center;
    gap: 2vw;
    font-size: 4vw;
    color: white;
    box-shadow: 0.25vw 0.25vw 0.5vw 0vw rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.0075);
    backdrop-filter: blur(0.15vw);
    border-radius: 3vw;
    justify-content: space-between;
  }
  
  .user_name {
    margin-right: 7vw;
  }
  
  .timer {
    font-size: 4vw;
    margin-top: 4vw;
    color: #aaa;
  }
}