body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

nav {
    background: #ff914d;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: white;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

main {
    height: auto;
    margin: auto;
}

h2 {
    color: white;
}

.contenedor-pagina {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  background-color: #232020;
  color: white;
}

footer {
  background: #ff914d;
  color: black;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: auto;
}



.sobre {
  text-align: justify;
  padding: 20px;
}

.bloque-fotos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5vh;
}

.bloque-fotos img {
  max-width: 100%;
  height: auto;
  padding: 80px;
  max-height: 250px;
  min-height: 250px;
}

.social-icons {
  margin-bottom: 10px;
}

.icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: black;
  transition: transform 0.3s, color 0.3s;
}

.icon:hover {
  transform: scale(1.1);
}

.x:hover {
  color: #1DA1F2;
}

.facebook:hover {
  color: #1877F2;
}

.youtube:hover {
  color: #FF0000;
}