body{
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #eee;
    display: flex;
    align-items: center;
    justify-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.1);
}

#quote {
    font-size: 1.4em;
    margin-bottom: 10px;
}

#author {
    color: #00ffc3;
    font-size: 1em;
}

button{
    padding: 10px 20px;
    margin: 10px 5px;
    background: #00ffc3;
    border: none;
    color:#111;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #00d5a8;
}