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

.quote-container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px;
}

.quote {
    margin-bottom: 20px;
}

#quote-text {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

#quote-author {
    font-size: 1.2em;
    color: #555;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #ef6237;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #f7592b;
}

@media (max-width: 600px) {
    #quote-text {
        font-size: 1.2em;
    }

    #quote-author {
        font-size: 1em;
    }

    button {
        width: 100%;
        padding: 15px;
        font-size: 1.1em;
    }
}
