*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: steelblue;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: none;
}

.container{
    width: 30rem;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.container textarea{
    width: 100%;
    margin-top: 1rem;
    border: 1px solid darkblue;
    padding: .5rem;
    border-radius: 5px;
}


.container h3{
    text-align: center;
}

.choice {
    margin-top: .3rem;
    background-color: rgb(210, 103, 31);
    border-radius: 5px;
    font-size: small;
    padding: .5rem;
}

.choice-container{
    display: flex;
    justify-content: flex-start;
    margin-top: .2rem;
    gap: .3rem;
}

.selected{
    background-color: black;
}