body {
  background: white;
}

.section-one {
  width: 940px;
  height: 100%;
  border: 1px solid var(--c6);
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.principal-article {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 80%;
  margin: 0 auto;
}

.article-header-description {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.article-header-description div {
  display: flex;
  gap: 1rem;
}

.article-header h1 {
  font-size: 40px;
  font-family: "Roboto";
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

.article-date {
  font-size: 1rem;
  color: var(--c6);
}

.article-author-name {
  font-size: 1rem;
  color: black;
}

.article-content {
  margin-top: 2rem;
}

.article-text {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Roboto";
  color: #2f2e2e;
}

.article-text + .article-text {
  margin-top: 1.5rem;
}

.article-sub-title {
  font-weight: 700;
  font-size: 1.3rem;
}

.article-text:last-child {
  margin-bottom: 2rem;
}

.social-networks-container {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  color: #2f2e2e;
  gap: 2rem;
}

.social-networks-container i {
  cursor: pointer;
}

.total-article-interaction {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.total-article-interaction p {
  color: #9c9c9c;
}

.total-article-interaction i {
  color: red;
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 980px) {
  .section-one {
    width: 95%;
  }
}

@media screen and (max-width: 650px) {
  .article-header h1 {
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .principal-article {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 90%;
  }
}

@media screen and (max-width: 450px) {
  .section-one {
    margin-top: 2rem;
  }

  .article-header h1 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .article-header-description div {
    width: 100%;
    justify-content: space-between;
  }

  .article-header-description i {
    display: none;
  }

  .article-date {
    font-size: 0.8rem;
    color: var(--c6);
  }

  .article-author-name {
    font-size: 0.8rem;
    color: black;
  }
}
