*,html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

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

.quote-container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
}

.quote-container h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.quote-box {
    padding: 20px;
    margin: 20px 0;
    background-color: #e0f7f4;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.quote-box #quote {
    font-size: 1.5em;
    color: #00796b;
    margin-bottom: 10px;
}

.quote-box #author {
    font-size: 1.2em;
    color: #004d40;
    font: italic;
}

button {
    background-color: #2cebd4;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:active {
    background-color: #004d40;
    color: #ffffff;
}

/* View screen for mobile */
@media (max-width: 450px) {
    .quote-container {
        max-width: 350px;

    }

    .quote-container h1 {
        font-size: 1.2em;
    }

    .quote-box #quote {
        font-size: 0.9em;
    }

    .quote-box #author {
        font-size: 0.8em;
    }
}