/* Estilos Generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Encabezado */
header {
  background-color: #00416a;
  color: #fff;
  text-align: center;
  padding: 1.5em;
}

header h1 {
  font-size: 2.5em;
}

header p {
  font-size: 1.1em;
  margin-top: 0.5em;
}

nav a {
  color: #fff;
  margin: 0 1em;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Sección de Videos */
#videos {
  padding: 2em;
  text-align: center;
}

#videos h2 {
  font-size: 2em;
  color: #333;
}

.videos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-top: 1em;
}

.video {
  width: 100%;
  max-width: 500px;
}

.btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.7em 1.5em;
  background-color: #ff7f50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #ff6347;
}

/* Sección de Redes Sociales */
#social {
  background-color: #00416a;
  color: #fff;
  padding: 2em;
  text-align: center;
}

#social h2 {
  font-size: 2em;
}

.social-links a {
  color: #ff7f50;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Pie de Página */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1em;
}

footer a {
  color: #ff7f50;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
