body {
    font-family: "Comic Sans MS", sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

button {
    font-family: "Comic Sans MS", sans-serif;
    font-size: 20px;
    padding: 10px;
    border: none;
    background-color: white;
    color: black;
    border-radius: 5px;
}

button:active {
    background-color: #e0e0e0;
}

img {
    border-radius: 50px;
}

.home-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: white;
}

.home-button>img {
    border-radius: 5px;
}

.grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 90vh;
    max-width: 75%;
}

.grid-item {
    padding: 20px;
    font-size: 30px;
    text-align: center;
    height: 40vh;
}

.question-container {
    display: grid;
    grid-template-columns: auto auto;
    padding: 10px;
    height: 90vh;
    align-items: center;
    justify-content: center;
}

.question-text {
    padding: 20px;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    height: 30vh;
}

.question-image {
    margin: 0px;
    padding: 0px;
    height: 75vh;
}

.question {
    font-size: 30px;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.correct-text {
    font-size: 30px;
    padding: 20px;
    text-align: center;
    color: green;
    font-weight: bold;
}

.correct-image {
    padding: 20px;
    height: 50vh;
}
