body {
    font-family: 'EB Garamond', serif;
    background-color: #343540;
    color: #ececf1;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#app {
    width: 80%;
    display: flex;
    align-items: flex-end; /* Align items to bottom */
    padding: 80px;
}

#question-container {
    width: 66%;
    text-align: left;
}

#question {
    font-size: 2.5em;
    max-width: 100%;
    transition: all 0.3s ease;
}

#button-container {
    width: 33%;
    display: flex;
    justify-content: flex-end; /* Align button to the right */
    align-items: center; /* Center button vertically */
}

button {
    padding: 0;
    width: 40px; /* Circle width */
    height: 40px; /* Circle height */
    background-color: white;
    color: black;
    border-radius: 50%; /* Make it circular */
    border: none;
    font-size: 1.5rem;
    line-height: 40px; /* Vertically center the arrow */
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transform: translateY(-15px); /* Move button up by 15px */
}

button:hover {
    background-color: #e0e0e0;
    transform: scale(1.1);
}


.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}


@media (max-width: 768px) {
    #question {
        font-size: 1.5em;
    }

    #app {
        flex-direction: column;
        align-items: stretch;
    }

    #question-container, #button-container {
        width: 100%;
    }

    #button-container {
        justify
