* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* Estilos header */

.container__header {
  width: 100%;
  height: 130px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding-left: 150px;
  border-bottom: solid 3px #cccccc;
}

.logo__image {
  width: 55px;
  border-radius: 5px;
  box-shadow: 0 2px 4px 2px #00000025;
}

.header__title,
.footer__title {
  font-size: 28px;
  font-weight: 700;
  padding-left: 10px;
}

/* Estilos footer */
.footer {
  width: 100%;
  height: 130px;
  padding-top: 30px;
  border-top: solid 3px #cccccc;
}

.container__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 70px;
  padding: 0 130px;
}
.logo__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Estilos textos y títulos */
.link__text {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 400;
}

.title .title__side {
  font-size: 28px;
  font-weight: 700;
}

.title {
  padding-bottom: 30px;
}

.container_nov {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 0 50px 90px 50px;
  padding-top: 30px;
}
/* Estilos main */
.main {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

/* Estilos main card */

.card__image--xl {
  width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.main .card__body {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  row-gap: 30px;
}

.card__date {
  font-size: 18px;
}

.card__title {
  font-size: 24px;
}

.card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 20px;
}
.card__footer .logo__image {
  border-radius: 50%;
}
/* Estilos side card main__side*/

.main__side {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
  padding-top: 64px;
  margin: 0 20px;
}
.side__card {
  display: flex;
  flex-direction: row;
  width: 400px;
}

.side__card .card__body {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 10px;
}
.side__card .card__image {
  object-fit: cover;
  border-radius: 20px;
  width: 190px;
  height: 150px;
}

.side__card .card__date {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 5px;
}

.side__card .card__title {
  font-size: 20px;
  font-weight: 700px;
  padding-bottom: 5px;
}
.side__card .logo__image {
  width: 40px;
}

/* Estilos popcat section */
.container_popcat {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-top: solid 3px #cccccc;
  padding-top: 30px;
}

.container_pop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  gap: 30px;
  padding-top: 30px;
}

/* Estilos Pop cards */
.pop {
  display: flex;
  flex-direction: column;
}

.pop .card {
  width: 300px;
  height: 350px;
}

.pop .card__image {
  border-radius: 20px;
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.pop .card__date {
  font-size: 16px;
  font-weight: 400;
}
.pop__side {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
  padding-top: 30px;
}

/* Estilos categorias side__badge */
.side__badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  height: 90px;
  border-radius: 10px;
  padding: 0 20px 0 10px;
}
.badge__image {
  width: 70px;
}

.badge__title {
  font-size: 32px;
  color: white;
}

.side__badge--bg-html {
  background-color: #e93e30;
}

.side__badge--bg-js {
  background-color: #f7e018;
}

.side__badge--bg-css {
  background-color: #299ed5;
}

.side__badge--bg-react {
  background-color: #292c33;
}

.side__badge--bg-vue {
  background-color: #67c770;
}

.side__badge--bg-boot {
  background-color: #563d7c;
}
.side__text {
  text-align: right;
}
