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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #eaeff5;
  margin: 0 auto;
  max-width: 90rem;
  color: #2b3f5b;
  box-shadow: 1.95px 1.95px 2.6px rgba(0, 0, 0, 0.15);
}

header {
  margin: 0 auto;
  max-width: 90rem;
  background-color: #fff;
}
.header {
  max-width: 90rem;
  height: 45rem;
  background-color: #2b3f5b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  border-bottom-left-radius: 10rem;
}

.header h2 {
  color: #fff;
  font-size: 4.2rem;
  font-weight: 500;
}

.header h3 {
  font-size: 3.6rem;
  font-weight: 500;
  color: #fa6363;
}

main {
  background-color: #2b3f5b;
  margin: 0 auto;
  max-width: 90rem;
}

.container {
  background-color: #fff;
  max-width: 90rem;
  margin: 0 auto;
  place-items: center;
  border-bottom-left-radius: 10rem;
}

.post {
  padding: 11rem 10rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.post img {
  max-width: 35rem;
  border-radius: 0.3rem;
  box-shadow: 1.95px 1.95px 2.6px rgba(0, 0, 0, 0.15);
}

.post-text h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.post-text p {
  font-size: 1.6rem;
  margin-bottom: 4rem;
}

.line {
  padding-top: 11rem;
  border-top: 2px solid #fa6363;
}

.post:last-child {
  padding-bottom: 11rem;
}

.section-footer {
  padding-top: 4rem;
  background-color: #2b3f5b;
  margin: 0 auto;
  max-width: 90rem;
}

.footer-icons {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 1rem;
}

.footer-link:link,
.footer-link:visited {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2.8rem;
}

.footer-link:hover,
.footer-link:active {
  color: #fa6363;
  transition: color 0.5s ease;
}

.footer p {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  padding-bottom: 1rem;
}

.blog-link:link,
.blog-link:visited {
  margin-bottom: 4rem;
  display: inline-block;
  width: 25rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-color: #fa6363;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
  box-shadow: 1.95px 1.95px 2.6px rgba(0, 0, 0, 0.15);
}

.blog-link:hover,
.blog-link:active {
  color: #2b3f5b;
  transition: color 0.5s ease;
}

.blog-link-2:link,
.blog-link-2:visited {
  margin-top: 11rem;
  display: inline-block;
  width: 25rem;
  text-align: center;
  color: #2b3f5b;

  text-decoration: none;
  background-color: #fa6363;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
  box-shadow: 1.95px 1.95px 2.6px rgba(0, 0, 0, 0.15);
}

.blog-link-2:hover,
.blog-link-2:active {
  color: #fff;
  transition: color 0.5s ease;
}

@media (max-width: 43.75em) {
  .header {
    border-bottom-left-radius: 5rem;
  }

  .container {
    border-bottom-left-radius: 5rem;
  }

  .post {
    padding: 11rem 5rem 0;
  }
}

@media (max-width: 31.25em) {
  .header {
    border-bottom-left-radius: 2rem;
    padding: 0 2rem;
  }

  .header h2 {
    font-size: 3.8rem;
  }

  .header h3 {
    font-size: 3.2rem;
  }
  .container {
    border-bottom-left-radius: 2rem;
  }

  .post {
    padding: 11rem 2rem 0;
  }
}
