body {
    font-family: sans-serif;
}

.game-container {
    max-width: 600px;
    margin: 1rem auto;
}

.scene {
    display: none;
    border: 1px solid #ccc;
    padding: 1rem;
    margin-top: 1rem;
}

#start {
    display: block;
}

.scene:target {
    display: block;
}

.scene:target ~ .scene {
    display: none;
}

.scene:target ~ #start {
    display: none;
}

.choices ul {
    list-style: none;
    padding: 0;
}

.choices a {
    display: block;
    padding: 0.5rem;
    background-color: #eee;
    margin-top: 0.5rem;
}

.restart-link a {
    margin-top: 1rem;
    display: inline-block;
}
