body{
background-color:beige

}

.lista-ordenada{
    border-radius: 5px;
    border: 2px solid black;
}
.contenedor-azul{
    background-color: aqua !important;
    margin: 20px;
    padding: 20px;
}
.contenedor-verde{
    margin: 20px;
    padding: 20px;
    background-color: yellowgreen;
}
.contenedor-imagen {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin: 30px 0;
}


.contenedor-imagen img {
  width: 200px;
  border-radius: 50%;
}

form {
  max-width: 800px;
  margin: 20px auto;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

form label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 14px;
  flex: 1 1 150px; /* ancho base y flexible */
}

form input[type="text"] {
  height: 32px;
  padding: 5px 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

form input[name="edad"] {
  width: 80px; /* ancho fijo para edad */
}

form input[name="q"] {
  flex: 2 1 100px; /* campo de búsqueda más ancho */
}

form button {
  height: 36px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-end; /* botón alineado abajo */
  flex-shrink: 0;
}

form button:hover {
  background-color: #45a049;
}
th{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 25px;
  background-color: black;
  color: teal;
}
.pie-pagina {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
  border-top: 3px solid #aaa;
}
.encabezado-principal {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-family: 'Arial', sans-serif;
  border-bottom: 4px solid #2e7d32;
  margin-bottom: 20px;
}

.encabezado-principal h1 {
  margin: 0;
  font-size: 36px;
}

.encabezado-principal p {
  margin: 10px 0 0;
  font-size: 18px;
}

.enlace-fundaula,
.enlace-fundaula:visited {
  color: #ffeb3b; /* mismo color para normal y visitado */
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.enlace-fundaula:hover {
  text-decoration: underline;
  color: #fff176;
}
.gif-header {
  width: 120px;
  margin-top: 15px;
  border-radius: 10px;
}

.imagen-vaca,
.gif-dragon {
  width: 200px;
  border-radius: 50%;
}

.dragon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-dragon {
  border-radius: 10px;
  box-shadow: 0 0 10px #0003;
}

audio {
  width: 200px;
}
.elemento-contenedor {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f0f0f0;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.elemento-contenedor img,
.elemento-contenedor iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.elemento-contenedor audio {
  width: 100%;
  height: 40px;
  border-radius: 10px;
}
.contenedor-video {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #e3f2fd; /* azul claro */
  box-shadow: 0 0 15px #0002;
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
}

.video-dragon {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 0; /* sin bordes redondeados */
}