body {
  font-family: HkbGroteskRegular;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  line-height: 2.5rem;
  margin-top: 0; 
  margin-bottom: 1rem;
  word-break: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

.circle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  margin: 0;
  gap: 2rem;

}

@media (max-width: 1279px) {
  .circle-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 2rem;
  }
}

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-color: black;
  border-width: 2px;
  border-radius: 50%;
  background: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 601px) {
  .circle {
   font-size: 2rem;
  }
}

.circle::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

@media (max-width: 601px) {
  .circle {
    font-size: 2rem
    border-width: 1px;

  }
}



.circle:hover {
  background-color: #777777;
  color: white;
  border-color: #777777;
}

@media (max-width: 601px) {
  .circle.clicked {
    border-color: black;

  }
}

.circle.clicked {
  background-color: black;
  color: white;
}

.display-text {
  margin-top: 2.5rem;
  text-align: left;
  font-size: 3rem;
  line-height: 3.5rem;
}

@media (max-width: 601px) {
  .display-text {
    margin-top: 2.5rem;
    text-align: left;
    font-size: 2rem;
  }
}
