body {
  margin: 0;
  padding-top: 20px;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background-color: #27272c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  user-select: none;
  overscroll-behavior: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-scroll-chaining: none;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.circle {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #27272c;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 
    0 0 6px rgba(240, 248, 255, 0.4),
    0 0 4px rgba(240, 255, 255, 0.3);
  transition: box-shadow 0.3s ease;
  margin-top: 1px;
}

.circle:hover {
  box-shadow: 
    0 0 15px rgba(240, 248, 255, 0.6),
    0 0 10px rgba(240, 255, 255, 0.5);
}

.circle img {
  width: 100%;
  height: auto;
}

.avatar-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    text-transform: none;
    margin-top: 16px;
}

.avatar-title::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.avatar-title:hover::after {
    opacity: 1;
    visibility: visible;
}

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

button {
    position: relative;
    background: #444;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    border: none;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    padding: 1rem 2rem;
    transition: 0.2s;
    white-space: nowrap;
    width: auto;
    min-width: 350px;
    height: auto;
    min-height: 60px;
    z-index: 3;
}

button:hover {
    background: var(--clr);
    color: #fff;
    box-shadow: 0 0 15px var(--clr);
}

button::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: #272822;
}

button span {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  body {
    gap: 0.5rem;
  }
}
