body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    color: white;
    font-family: sans-serif;
    text-align: center;
}

h1 {
    font-size: 3vw;
    margin-bottom: 3vw;
}

.buttons {
    display: flex;
    gap: 3vw;
    margin-bottom: 3vw;
}

button {
    width: 12vw;
    height: 12vw;
    font-size: 2vw;
    margin: 2vw;
    border: none;
    border-radius: 2vw;
    background-color: #333;
    color: white;
    cursor: pointer;
}

@keyframes wobble {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

button:hover {
  animation: wobble 0.5s linear infinite;
}

#scores, #gameResult {
    font-size: 2vw;
    margin-top: 3vw;
}
