:root { color-scheme: light only; }

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    font-size: 15pt;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#counter {
  margin: 0;
  top: 1rem;
}

#max-rec {color: greenyellow}

#player {
  position: fixed;
  bottom: 3vw;
  margin: auto;
  animation: 5s rotate infinite linear;
}

#shapes-holder {
  margin: 50%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  column-gap: 5vw;
  row-gap: 5vw;
}

.circle {
  border-radius: 50%;
  border: solid 5.5vw grey;
}

.square {
  border-radius: 1vw;
  border: solid 5vw grey;
}

.triangle {
  background: none !important;
  border-bottom: 10vw solid;
  border-radius: 1vw;
  border-left: 6vw solid transparent !important;
  border-right: 6vw solid transparent !important;
}

@keyframes rotate {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
@keyframes scale {
  from {transform: rotate(0deg) scale(1);}
  50% {transform: scale(1.5);}
  to {transform: scale(1);}
}