body {
  height: 100dvh;
  background-color: #1b1b1b;
}

.mouse_cursor {
  width: 3.25rem;
  height: 3.25rem;
  border: 2px solid var(--color-texta);
  border-radius: 50%;
  position: fixed;
  z-index: 100;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transform-origin: 100% 100%;
  -webkit-backdrop-filter: sepia(20%);
          backdrop-filter: sepia(20%);
  background-size: cover;
  border: 1px solid #606060;
  box-shadow: 0rem 0rem 1rem rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

a {
  text-decoration: none;
}

img {
  margin-inline: auto;
  display: block;
}

.nav {
  min-height: 56px;
  background-color: #1b1b1b;
  color: #d2d2d2;
  padding-inline: 3.75rem;
  padding-block: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.nav__logo {
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s ease;
}
.nav__logo:hover {
  transform: scale(1.1);
  text-shadow: 0rem 0rem 1rem rgba(255, 255, 255, 0.5);
}
.nav__right {
  display: flex;
  gap: 1.625rem;
  font-size: 1rem;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.nav__right a {
  padding: 0.75rem;
  border-radius: 62.4375rem;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}
.nav__right a:hover {
  padding-inline: 0.75rem;
  padding-block: 0.5rem;
  border-radius: 62.4375rem;
  color: #1b1b1b;
  background-color: #d2d2d2;
  font-weight: 800;
  box-shadow: 0rem 0rem 1rem rgba(255, 255, 255, 0.5);
}

.main {
  background-color: #1b1b1b;
  -webkit-backdrop-filter: blur(1.25rem);
          backdrop-filter: blur(1.25rem);
  width: 19em;
  height: 19rem;
  margin-inline: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
.main__text {
  text-align: center;
}
.main__text-question {
  color: #d2d2d2;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.main__text-animaiton {
  display: flex;
  justify-content: center;
  color: #d2d2d2;
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 1rem;
}