@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

@keyframes spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

.fa-spinner-third {
  animation: spin 1s linear infinite;
}

body {
  margin-top: -20.8px !important;
}

:root {
  --hover-color: #c5c5c5;
  --main-color: #2A5AA3;
  --secondary-color: #782AD1;
}

section {
  width: 100%;
  height: 95.7vh;
}

.logo-container {
  color: #ffffff;
  padding-top: 50px;
  height: 95.7vh;
  background-color: #000000;
  background-image: url("../img/logo_star.png");
  background-size: 3%;
}

.nav__ul {
  background: #000000 !important;
}

.logo-container .logo__display {
  margin-bottom: 20px;
  border: #ffffff 5px solid;
  border-radius: 100%;
  box-shadow: 0px 0px 28px 21px rgba(42, 90, 163, 0.98);
  -webkit-box-shadow: 0px 0px 28px 21px rgba(42, 90, 163, 0.98);
  -moz-box-shadow: 0px 0px 28px 21px rgba(42, 90, 163, 0.98);
}

.logo-container h1 {
  font-family: "Poppins";
}

.nav__a {
  color: #ffffff !important;
}

@keyframes fade-in-bounce {
  0% {
    opacity: 0;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.2;
  }

  100% {
    scale: 1;
  }
}

.stats {
  padding: 5px;
  width: 300px;
  margin: auto;
  color: #000000;
  background: #ffffff;
  border-radius: 20px;
  animation: fade-in-bounce 0.8s;
}

.stats .statsList {
  user-select: none;
  list-style-type: none;
  padding-left: 0;
}

#extraInfo {
  user-select: none;
  cursor: pointer;
  margin-top: 10px;
  width: fit-content;
  text-decoration: overline;
}

video {
  border-radius: 10px;
  outline: 5px solid var(--main-color);
}
