body {
    background: aliceblue;
}

.panel {
    margin-top: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: navy;
}

.questions {
    font-size: 30px;
    margin-bottom: 20px;
}

.options {
    font-size: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    grid-gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: rgb(229, 237, 245);
    padding: 10px;
    border-radius: 20px;
    width: 90%;
}

label {
    display: flex;
    flex-direction: row;
}

button {
    margin-left: 75px;
    margin-top: 8%;
    font-size: 20px;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    background: #4f98c2;
}

.scores {
    font-size: 30px;
    color: darkslateblue;
}

@media (min-width: 500px) {
    .options {
        width: 60%;
    }
}