/* Style for the highscoreboard site */
.highscoreText {
    margin: 5px 0px 0px 0px;
    font-size: 20px;
    font-weight: bold;
  }
  .highscoreContainer {
    justify-content: center;
    align-items: baseline;
    flex-wrap: column wrap;
    flex-direction: column;
    font-size: 10px;
    display: inline-flex;
  }
  
  .winnerImage {
    width: 65px;
    height: 65px;
    border: 5px solid black;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .winnerText {
    margin: auto;
    margin-left: 10px;
    font-size: 30px;
    font-weight: bolder;
  }
  
  .winnerSeparator {
    width: 100%;
    height: 0px;
    border: 4px solid rgb(186, 245, 231);
    border-width: 10px;
    border-radius: 13px;
  }
  