@font-face {
  font-family: "KiwiSoda";
  src: url("../font/KiwiSoda.ttf");
}

body {
  background-color: #171d25;
  color: aliceblue;
  font-family: KiwiSoda, Helvetica, Arial, sans-serif;
  font-size: larger;
}

#highscores_container,
#highscore {
  font-family: Arial, Helvetica, sans-serif;
}

ul {
  list-style: none;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container_card {
  border-radius: 18px;
  background: #2e3a49;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  padding: 10px 10px 10px 10px;
}

button.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    margin-bottom: 10px;
}

/* Set width and height for the button */
button.learn-more {
    width: 14rem;
    height: auto;
}

/* Set properties for the circle within the button */
button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #2e3a49;
    border-radius: 1.625rem;
}

/* Set properties for the icon within the circle */
button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

/* Set properties for the arrow icon within the circle */
button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

/* Set properties for the arrow icon's pseudo-element */
button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

/* Set properties for the text within the button */
button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: -0.2rem 0 0 3.5rem;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
    text-transform: uppercase;
}

/* Set properties for the circle and arrow when hovering over the button */
button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

/* Set properties for the text when hovering over the button */
button:hover .button-text {
    color: #fff;
}