body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Monaco', monospace;
    background: rgb(63, 161, 251);
    background: linear-gradient(
        142deg,
        rgba(63, 161, 251, 1) 0%,
        rgba(252, 70, 168, 1) 100%
    );
}

#game-container {
    text-align: center;
    border: 5px solid black;
    border-radius: 10px;
}

h1 {
    font-size: 2em;
}

#word-options {
    margin-top: 20px;
}

button {
    margin: 5px;
    padding: 10px;
    font-size: 2em;
    border-radius: 5px;
    font-family: 'Monaco', monospace;
    cursor: pointer;
}