@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

html {
  --loadingcolor: rgb(170, 221, 255);
}

svg {
  border: 1px gray;
  margin-top: 30px;
}

.title {
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

#person-display {
  font-family: 'Roboto', sans-serif;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  position: absolute;
  display: none;
}

.vis-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vis-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.subtitle {
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

#loading-wheel {
  width: 100px;
  height: 100px;
  background: none;
  border: 10px solid var(--loadingcolor);
  border-radius: 50%;
  margin: 50px auto;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: rotate;
}

@keyframes rotate {
  0% {
    transform: rotate(70deg);
  }
  50% {
    transform: rotate(290deg);
  }
  100% {
    transform: rotate(70deg);
  }
}

#loading-circle {
  width: 40px;
  height: 40px;
  background-color: var(--loadingcolor);
  margin: -3px auto;
  border-radius: 50%;
}