:root {
    --color1: #F47CAC;
    --color2: #007AAE;
    --color3: #00B6FF;
    --color4: #FF99C2;
    --color5: #FDF4E3;
    --color6: #b04d98;
}

* {
    margin: 0;
    padding: 0;
    color: var(--color5);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--color1); 
    color: var(--color5);
    line-height: 1.5;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px;
    color: black;
}

header h1 {
    font-size: 50px;
    margin-bottom: 0.1em;
}

header p {
    font-size: 15px;
}

#imagenes, #video, #youtube, #audio {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--color4);
    border-style: solid;
    border-color: var(--color6);
    border-width: 1px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h2 {
    font-size: 25px;
    margin-bottom: 0.1em;
    text-align: center;
}

h3 {
    font-size: 15px;
    margin-bottom: 5px;
    text-align: center;
    position: relative;
    z-index: 1;
}

#imagenes div,
#video div,
#audio div {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px auto;
}

img,
video iframe {
    max-width: 100%;
    height: auto;
    display: inline-flex;
    margin: 10px auto;
    position: relative;
    z-index: 0;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--color2);
    color: white;
    margin-top: 20px;
    width: 100%;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

footer a {
    color: var(--color3);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}