
.hide {
    display: none;

}

body{
    height: 100vh;
    background-color: #1F2833;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

header{
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    font-size: 2em;
    color: #000000;
    background-color: #45A29E;
    border-radius: .5em;
    border: thick solid #c5c6c7;
    box-shadow: 0 0 5px 5px #c5c6c7;
    padding: 1em .5em;
    margin: .25em;

}

.container{
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1F2833;
    margin-top: 2em;

}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    background-color: #45a29e;
    color: #000000;
    border-radius: 1em;
    border: thin solid #c5c6c7;
    padding: 1em;
    box-shadow:  0 0 5px 3px #c5c6c7;
}

#answers {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

button {
    font-size: .75em;
    font-weight: bold;
    margin: .75em;
    padding: .25em;
}

button:hover {
    background-color: black;
    color: #c5c6c7;
}

div {
    text-align: center;
    padding: .5em;
}

li {
    text-align: left;
}

form {
    margin: 1em;
}

.button-container {
    display: flex;

}