:root {
  --yellow-color: #cda30f;
  --dark-color: #2a2b2b;
}
body {
  box-sizing: border-box;
}
.container {
  max-width: calc(568px - 20px);
  width: calc(100% - 20px);
  padding: 50px 0;
  border-radius: 20px;
  margin: 25px auto;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.logo {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.logo h3 {
  color: var(--yellow-color);
  font-size: 24px;
}
.logo img {
  width: 100px;
  height: 100px;
  background-color: #000b;
  border-radius: 50%;
}

.list ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.list ul li {
  width: 80%;
  min-width: 200px;
  height: 50px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  list-style-type: none;
  transition: all 0.5s;
}
.list ul li:hover:not(:last-child) {
  transform: scale(1.1);
}
.list ul a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 100%;
}
.list ul a span {
  font-weight: bold;
}
.list ul a i {
  color: #000;
  font-size: 20px;
}
.list ul a i:last-child {
  color: var(--yellow-color);
}
#vanta {
  position: fixed;
  inset: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 568px) {
  .list ul li {
    width: 60%;
  }
  /* .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  } */
}
