body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: pink;
}
img {
    max-width: 100%;
    height: auto;
}

#quiz {
    width: 400px;
    border: 1px solid pink;
    border-radius: 5px;
    padding: 2rem;
    background-color: pink;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.answers {
    display: flex;
    flex-direction: column;
}

.btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: darksalmon;
    color: #fff;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s ease-in;
}

.btn:hover {
    background-color: darksalmon;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    #quiz {
        width: 90%;
    }
}