body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(120deg, #f6d365, #fda085);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 400px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
}

input[type="button"] {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 8px;
    background-color: #ed8936;
    color: white;
    cursor: pointer;
}

input[type="button"]:hover {
    background-color: #c05621;
}

#frase {
    margin: 20px 0;
    font-style: italic;
}

#imagen {
    width: 300px;
    border-radius: 12px;
}