body {
    font-family: 'Segoe UI', Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFB74D;
    transition: background 0.6s ease;
    margin: 0;
}

.container {
    background: white;
    width: 390px;
    height: 260px;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-size: 26px;
    margin: 0;
    font-weight: 600;
}

#quote {
    font-size: 20px;
    line-height: 1.4;
    height: 90px;
    overflow: hidden;
    margin: 5px 0;
    opacity: 1;
    transition: opacity 0.4s ease;
}

button {
    font-size: 16px;
    padding: 12px 25px;
    border: none;
    background: #333;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #555;
}