body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f2f2f7;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
}

/* Títulos */
h1 {
    margin-top: 40px;
    font-size: 2.5em;
    color: #4a4a8a;
}

p {
    font-size: 1.2em;
    margin: 10px 0;
}

#frase {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

/* Imagen */
#imagen {
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Contenedor de botones */
table {
    margin: 30px auto;
}

input[type="button"] {
    background: #4a4a8a;
    border: none;
    color: white;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

input[type="button"]:hover {
    background: #6969b3;
}

input[type="button"]:active {
    transform: scale(0.97);
}