
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Nunito', sans-serif;
overflow-y: auto;
}

button {
font-family: 'Nunito', sans-serif;
color: black;
}

@media (hover: none) {
button {
border: 1px solid #00000099;
box-shadow: 2px 2px 4px 2px #00000033;
}
}

.select-quiz {
width: 100%;
height: 100%;
background-color: #ffffff;
color: #443636;
}

.select-quiz * {
height: 100%;
}

.select-quiz-container {
display: flex;
justify-content: space-evenly;
align-items: stretch;
}

.select-quiz-container > .pane {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.select-quiz-container > .pane button {
width: 97%;
border: 0px;
height: 97%;
font-size: 3rem;
font-weight: 400;
white-space: normal;
padding: 3rem;
background-color: #ffffff;
color: #443636;
}

.select-quiz-container > .pane button:hover {
background-color: #79dea8;
color: #ffffff;
cursor: pointer;
}

@media (max-width: 650px) {
.select-quiz-container {
flex-direction: column;
}
.select-quiz-container > .pane button {
font-size: 2rem;
}
}

