/* Basic Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f1f1f1;
    color: #003087; /* Real Madrid Blue */
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffffff;
    padding: 50px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.5s;
}

header:hover {
    background-color: #003087;
    color: #ffffff;
    transform: scale(1.05);
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

h2 {
    font-size: 2em;
    margin: 40px 0 20px 0;
}

/* Videos */
video {
    width: 300px;
    margin: 20px;
    border-radius: 15px;
    transition: transform 0.6s, box-shadow 0.6s;
}

.video-transform:hover {
    transform: rotateY(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Audio */
audio {
    margin: 20px;
    outline: none;
    transition: transform 0.5s, filter 0.5s;
}

.audio-transform:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Images */
img {
    width: 300px;
    margin: 20px;
    border-radius: 15px;
    transition: transform 0.5s, opacity 0.5s;
}

.img-transform:hover {
    transform: rotate(-5deg) scale(1.1);
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: #003087;
    color: #ffffff;
    padding: 20px;
    margin-top: 40px;
    transition: transform 0.5s;
}

footer:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
