* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Staatliches", cursive;
  color: white;
  font-size: 16px;
}

/* @media screen and (max-width: 375px) {
  #container {
    width: 100vw;
    height: 100vh;
    border: 10px solid greenyellow;
  }
}

@media screen and (min-width: 376px) {
  #container {
    width: 100vw;
    height: 100vh;
    border: 10px solid red;
  }
} */

body {
  background: rgba(142, 68, 173, 1);
}

.bg-container {
  z-index: 1;
  position: absolute;
  top: 65%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateX(65deg);
  perspective: 1000px;
  transform-style: preserve-3d;
}

.circle {
  border-radius: 50%;
  position: absolute;
  animation: circle 5s infinite;
}

@keyframes circle {
  50% {
    transform: translateZ(180px);
  }
}

#circle1 {
  height: 190px;
  width: 190px;
  border: 5px solid rgba(210, 218, 226, 1);
  animation-delay: 0.9s;
}

#circle2 {
  height: 170px;
  width: 170px;
  border: 5px solid rgba(210, 218, 226, 0.9);
  animation-delay: 0.8s;
}

#circle3 {
  height: 150px;
  width: 150px;
  border: 5px solid rgba(210, 218, 226, 0.8);
  animation-delay: 0.7s;
}

#circle4 {
  height: 130px;
  width: 130px;
  border: 5px solid rgba(210, 218, 226, 0.7);
  animation-delay: 0.6s;
}

#circle5 {
  height: 110px;
  width: 110px;
  border: 5px solid rgba(210, 218, 226, 0.6);
  animation-delay: 0.5s;
}

#circle6 {
  height: 90px;
  width: 90px;
  border: 5px solid rgba(210, 218, 226, 0.5);
  animation-delay: 0.4s;
}

#circle7 {
  height: 70px;
  width: 70px;
  border: 5px solid rgba(210, 218, 226, 0.4);
  animation-delay: 0.3s;
}

#circle8 {
  height: 50px;
  width: 50px;
  border: 5px solid rgba(210, 218, 226, 0.3);
  animation-delay: 0.2s;
}

#circle9 {
  height: 30px;
  width: 30px;
  border: 5px solid rgba(210, 218, 226, 0.2);
  animation-delay: 0.1s;
}

#circle10 {
  height: 10px;
  width: 10px;
  border: 5px solid rgba(210, 218, 226, 0.1);
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

header {
  display: flex;
  width: 100%;
  height: auto;
  background-color: rgba(155, 89, 182, 1);
  /* -webkit-box-shadow: 3px 3px 15px 0px rgba(44, 62, 80, 0.5);
  box-shadow: 3px 3px 15px 0px rgba(44, 62, 80, 0.5); */
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}

header > h3 {
  font-size: 1.5rem;
  color: rgba(236, 240, 241, 1);
}

.rank {
  display: flex;
  justify-content: flex-end;
}

.rank > img {
  height: 1.5rem;

  padding-right: 10px;
}

.rank > h3 {
  font-size: 1.5rem;
  justify-self: flex-end;
}

header > img {
  height: 70px;
  border-radius: 50%;
  padding: 10px 0 10px 0;
}
