.title{
    color:antiquewhite;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: x-large;
    font-variant: small-caps;
    text-align: center;
}

.body{
    background-color: black;
}


.subheader{
    color:antiquewhite;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-variant: small-caps;
    font-size: medium;
    text-align: center;
}

.text{
    color:antiquewhite;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

.number{
    color:antiquewhite;
    text-align: center;
    font-size:xx-large;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin-top: 20px;
}


.choice {
    background-color: #222;
    color: antiquewhite;
    border: 2px solid antiquewhite;
    padding: 10px 20px;
    font-size: medium;
    font-family: system-ui, sans-serif;
    cursor: pointer;
    border-radius: 5px;
    width: 200px;
}

.choice:hover {
    background-color: #444;
}