@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Raleway", Arial, sans-serif;
}

header {
  text-align: center;
  width: 100%;
  height: auto;
}

header > h1 {
  font-size: 3.1rem;
  font-weight: 500;
  padding: 7px 0;
}

header > img{
  width: 100%;
}

main {
  width: 100%;
}


.container_descripcion {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 45px 150px;
}

.container_descripcion > .box_texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
  font-weight: 100;
  width: 50%;
}

.container_descripcion > .box_imagen1 {
  display: flex;
  justify-content: end;
  width: 50%;
  padding-bottom: 21px;
}

.box_imagen1 > img {
  width: 399px;
  height: 237px;
  max-width: 100%;
}

.container_iconografia {
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color:#1E1A13;
  text-align: center;
  width: 100%;
  height:auto;
  padding: 75px 0;
}

.container_iconografia > h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

.container_iconografia > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style-type: none;
  width: 100%;
}

ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 1rem;
  max-width: 20%;

}

li > p {
  font-size: 1.5rem;
  font-weight: 200;
  width: 100%;
}

.container_galeria {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 73px 150px;
}

.box_card > img {
  width: 316px;
  height: 202px;
  max-width: 100%;
}

footer {
  background-color: #1E1A13;
  text-align: center;
  padding: 39px 0;
}

footer > p{
  font-size: 1.25rem;
  font-weight: 200;
}

.footer_link {
  text-decoration: none;
  color: #fff;
}