body {
    font-family: Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: #00A2E8;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav ul {
    background: #00A2E8;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: Verdana, sans-serif;
    font-size: calc(0.6em + 0.6vw)
}

nav ul li {
    display: inline;
    font-family: Verdana, sans-serif;
    font-size: calc(0.6em + 0.6vw)
}

nav ul li a {
    color: #fff;
    display: inline-block;
    padding: 1rem;
    text-decoration: none;
    font-size: calc(0.6em + 0.6vw)
}


nav ul li a:link {
    color: #fff;
    background: #2d89e4;
  }
nav ul li a:visited {
    color: #fffffff0;
    background: #2d89e4;
  }
nav ul li a:hover {
    color: #e21fb852;
    background: #15ece89a;
}
nav ul li a:active {
    color: #101302;
    background: rgb(33, 236, 226);
  }

  nav ul li a.active {
    color: #d2ef1577;
    background: rgba(9, 9, 241, 0.456);
  }


  


main {
    padding: 1rem;
}

footer {
    background: #2d89e4;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

video, audio {
    display: block;
    margin: 1rem auto;
    max-width: 100%;
}

h1 {
    font-family: Cooper negra;
    font-size: calc(1em + 1vw) 
}

h3 {
    font-family: Cooper negra;
    font-size: calc(1em + 1vw) 
}

p {
    font-family: Comic sans;
    font-size: calc(1em + 1vw) 
}

img {
    width: 100%;
    height: 100%;

  }

.Imagenes {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;  /* Ajusta el ancho como porcentaje del contenedor */
    height: auto; /* Mantiene la proporción de aspecto */
}

  
  .video-container {
    position: relative;
    width: 80%;
    padding-bottom: 56.25%; /* Aspect ratio 9:16 */
    height: 0;
    overflow: hidden;
    max-width: 80%;
    margin: auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
}