* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #fbd3e9, #c6ddf5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.3rem;
    color: #4a4a4a;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

p:first-of-type {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    font-style: italic;
    color: #555;
}

table {
    margin-bottom: 1.5rem;
}

input[type="button"] {
    padding: 12px 28px;
    margin: 0 10px;
    border: none;
    border-radius: 30px;
    background: #ffffff;
    color: #6a5acd;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

input[type="button"]:hover {
    background: #6a5acd;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

#frase {
    max-width: 650px;
    margin: 1.2rem 0;
    padding: 18px 25px;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

#imagen {
    margin: 1rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#imagen:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

#audioRecuerdo {
    margin-top: 1.2rem;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.3rem;
    }

    #frase {
        font-size: 1.05rem;
        padding: 15px;
    }

    #imagen {
        width: 90%;
    }

    input[type="button"] {
        margin: 6px;
        padding: 10px 22px;
    }
}