:root {
    --text-color: #1a1a1a;
    --label-color: #111111;
    --gap: 14px;
  }

  * { box-sizing: border-box; }

  @keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

  body {
    font-family: "Sour Gummy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 48px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

  }


  .board {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgb(255, 255, 255);
  }

  .mainContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgb(255, 255, 255);
  }

  .section {
    margin-bottom: 40px;
    margin: 10px;
  }

  .section-label {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--label-color);
    text-align: center;
  }

  .pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    justify-content: center;
  }

  .pill h3 {
    margin-bottom: 0px;
  }

  .pill p {
    margin-top: 0;
  }

  .pill {
    background-color: var(--pill-bg);
    border-radius: 16px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
    min-width: 90px;
    max-width: 220px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    user-select: none;
    transition: background 0.5s ease;
  }

  .pill:hover {
    background-color: #c7c7c7;
    transition: background 0.5s ease;
    animation: tilt-shaking 0.3s infinite;
  }

  a {
    text-decoration: none;
  }
