* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: black;
  color: white;
}

/* Encabezado */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

header h1 {
  font-size: 50px;
  font-weight: 500;
}

/* Sección hero */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  width: 100%;
  height: auto;
}

/* Sección descripción */
.descripcion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px 10%;
}

.descripcion article {
  flex: 1;
  min-width: 300px;
}

.descripcion img {
  flex: 1;
  max-width: 400px;
  height: auto;
}
.descripcion p {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 16px;
}

/* Sección características */
.caract {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 10%;
  background-color: #1e1a13;
  text-align: center;
}

.caract h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Íconos de características */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 250px;
  max-width: 800px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.feature i {
  font-size: 50px;
}


/* Galería */
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 73px 0 73px 0;
}

.galeria figure {
  display: flex;
  justify-content: center;
  align-items: center;
}

.galeria img {
  width: 350px;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: #1e1a13;
  text-align: center;
  font-weight: 300;;
  font-size: 20px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
