* {
  margin: 0;
  padding: 0;
}

body {
  background: #d5c6a4;
  max-width: 100%;
  min-height: 100vh;
  margin: 1em;
}
/* HEADER */
.header {
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  grid-template-rows: 120px 30px;
  justify-items: center;
  align-items: center;
}

.header__article {
  border: 2px solid black;
  border-radius: 2px;
  width: 200px;
  height: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header__title {
  text-align: center;
  font-size: 5em;
}

.header__details {
  border: 2px solid black;
  border-left: none;
  border-right: none;
  width: 96%;
  grid-column: 1 / span 3;
  display: flex;
  justify-content: space-around;
  font-weight: 600;
  text-transform: uppercase;
}

/* MAIN */
.main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  grid-template-rows: repeat(auto-fit, minmax(250px, auto));
  grid-gap: 5px;
  margin: 20px 0 0px;
}

.item,
.item__subtitle {
  padding: 10px;
  text-align: center;
}

.item__title {
  font-size: 1.8em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.enfasis {
  margin-top: 5px;
  border: 2px solid black;
  border-left: none;
  border-right: none;
  font-size: 1.3em;
  padding: 0.2em 0;
  text-transform: uppercase;
}

.one {
  grid-column: 1 / 2;
  grid-row: 1 / 5;
}

.one .article {
  border: 2px solid black;
  text-align: center;
}

.one .content::first-letter {
  font-size: 2.5em;
  font-family: serif;
  float: left;
}

.content {
  text-align: justify;
  letter-spacing: normal;
  margin: 10px 0;
}

.two {
  grid-column: 2 / 3;
  grid-row: 1 / 5;
}

.two .item__image {
  width: 100%;
  height: 270px;
}

.item__image img,
.imagen__left img,
.imagen__right img {
  width: 100%;
  height: 100%;
  filter: sepia(100%);
}

.three {
  grid-column: 3 / 6;
  grid-row: 1 / 3;
  padding: 0;
}

.three__title,
.six__title {
  font-size: 2.2em;
  text-align: center;
}
.three__container {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 2fr;
}
.three__containerLeft,
.three__containerRight {
  border-bottom: 1px solid black;
}

.three__containerRight img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  filter: sepia(90%);
}

.four {
  grid-column: 3 / 4;
  grid-row: 3 / 8;
}

.five {
  grid-column: 1 / 3;
  grid-row: 5 / 8;
}

.six {
  grid-column: 4 / 6;
  grid-row: 3 / 4;
}

.six__content {
  column-count: 2;
}

.seven {
  column-count: 2;
  grid-column: 4 / 6;
  grid-row: 4 / 5;
}

.seven .imagen__left img,
.seven .imagen__right img {
  width: 230px;
  height: 220px;
}

.eight {
  grid-column: 4 / 6;
  grid-row: 6 / 7;
}
