body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

#app {
    text-align: center;
    width: 70%;
    max-width: 1200px;
}

#answers {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

.answer {
    display: block;
    width: 100%;
    height: 175px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 20px;
    color: #353839;
    background-color: #B3EBF2;
    transition: all 0.5s ease;
}

.answer:hover {
    background-color: rgb(183, 224, 228);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#result-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

#result-container h2 {
    padding-top: 25%;
}

#next-button,
#try-again-button {
    margin-top: 20px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#scoreboard {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

#scoreboard p {
    margin: 5px 0;
}