html {
    background-color: rgb(0, 0, 0);
    color: rgb(200, 220, 255);
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 10%;
}

h2 {
    font-size: 1.2rem;
}

h3 {
    text-align: center;
    font-size: 1.5rem;
}

#answers {
    display: flex;
    flex-direction: row;
    padding: 0.5rem;
    background-color: rgb(8, 8, 8);
    border: 0.1rem solid rgb(34, 44, 44);
    justify-content: center;
    border-radius: 1rem;
}

.answer {
    display: flex;
    background-color: rgb(14, 14, 14);
    padding: 1rem;
    margin: 1rem;
    flex-direction: column;
    height: auto;
    width: 8rem;
    align-items: center;
    border-radius: 1rem;
    border: 0.1rem solid rgb(34, 44, 44);
    box-shadow: 0.1rem 0.1rem 1rem black;
}

.answer button {
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    border: 0.2rem solid rgb(64, 68, 78);
    background-color: black;
    cursor: pointer;
}

.answer p {
    text-align: center;
}

li i {
    color: rgb(52, 64, 87);
}

#nuanced-button {
    border-radius: 0.5rem;
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    width: auto;
    height: auto;
    font-size: 0.5rem;
    color: rgb(54, 54, 54);
    box-shadow: 0 0 0.5rem black;
}