html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: whitesmoke;
  font-family: 'Comfortaa';
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/bg.avif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  z-index: -1;
  pointer-events: none;
}

.elements {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  color: whitesmoke;
  font-weight: 500;
  font-size: 20px;
  transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  flex-direction: row;
  gap: 35px;
}

.rows a,
.rows-highlighted a {
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: 0.5s;
}

.rows a {
  color: grey;
}

.rows-highlighted a {
  color: whitesmoke;
}

.rows a:hover,
.rows-highlighted a:hover {
  color: dodgerblue;
}

.profile-card {
  align-self: center;
  justify-self: center;
}

.boxes,
.profile-card {
  height: 60%;
  width: 94%;
}

.navbar,
.boxes {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  z-index: 1000;
  top: 20px;
  left: 0;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 80px;
  transition: 0.4s;
}

.strict-box {
  max-width: 2000px;
}

.boxes {
  max-width: 70%;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  left: 50%;
  top: 0;
  z-index: 9999;
  box-sizing: border-box;
  position: fixed;
  transform: translateX(-50%);
  width: min(100%, 500px);
}


.boxes:hover {
  transform: scale(1.01);
}


.tiny-button {
  transition: 0.4s;
  text-decoration: none;
  display: inline-block;
  border-radius: 7px;
  overflow: hidden;
  margin: 5px;
  vertical-align: middle;
}

.tiny-button img {
  display: block;
  width: 88px;
  height: 31px;
}

.tiny-button:hover {
  transform: scale(1.1);
}

.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 50px;
  width: auto;
  border-radius: 100%;
}

.nav-brand-text {
  color: white;
  font-size: 22px;
  font-weight: 700;
  transition: 0.5s;
}

.nav-brand-text:hover {
  color: dodgerblue;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.6s;
}

.main {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.boxes::before,
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 8px;
  background: linear-gradient(135deg, #00f2fe, #4facfe, #0072ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  display: inline-block;
}

.avatar-container::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #00f2fe, #4facfe, #0072ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;

}


::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: dodgerblue;
  border: 2px solid #000000;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00ffff;
}


::selection {
  background-color: dodgerblue;
  color: white;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}


::-moz-selection {
  background-color: rgba(0, 139, 139, 0.4);
  color: dodgerblue;
}

.avatar-container {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
  animation: neonPulse 2s infinite alternate;
}

.spinny {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.status-dot {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background-color: #747f8d;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.wave-letter:nth-child(1) {
  animation-delay: 0.1s;
}

.wave-letter:nth-child(2) {
  animation-delay: 0.2s;
}

.wave-letter:nth-child(3) {
  animation-delay: 0.3s;
}

.wave-letter:nth-child(4) {
  animation-delay: 0.4s;
}

.wave-letter:nth-child(5) {
  animation-delay: 0.5s;
}

.wave-letter:nth-child(6) {
  animation-delay: 0.6s;
}

.wave-letter:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes colorWave {

  0%,
  100% {
    color: #00ff00;
  }

  33% {
    color: #00ffff;
  }

  66% {
    color: #ff00ff;
  }
}

@keyframes neonPulse {
  0% { box-shadow: 0 0 8px dodgerblue, 0 0 10px dodgerblue; }
  100% { box-shadow: 0 0 18px dodgerblue, 0 0 23px dodgerblue}
}

@font-face {
  font-family: 'Frankfurter';
  src: url('/franfurter.otf') format('opentype');
}

.wave-letter {
  display: inline-block;
  animation: wave 1.2s infinite ease-in-out, colorWave 3s infinite linear;
  font-family: 'Frankfurter', 'Comfortaa', sans-serif;
  font-size: xxx-large;
}

.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-parent {
  position: relative;
}

.button {
  justify-content: center;
  display: inline-flex;
  align-items: center;
  color: dodgerblue;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Comfortaa';
  transition-duration: 0.4s;
  gap: 8px;
  width: fit-content;
  border: solid;
  border-color: dodgerblue;
  border-width: 5px;
}

.button:hover {
  transform: scale(1.1);
  color: white;
  background-color: dodgerblue;
}

.socials {
  transition-duration: 0.4s;
  display: inline-block;
}

.socials:hover {
  width: fit-content;
  cursor: pointer;
  transform: scale(1.2);
}

.spinny,
.avatar-container {
  display: inline-block;
  position: relative;
  transition: transform 0.6s ease-in-out;
  cursor: pointer;
}

.spinny:hover,
.avatar-container:hover {
  transform: rotate(360deg);
}

.avatar-container:hover {
  transform: scale(1.15);
}