.article-container {
  background-color: rgb(250, 250, 250);
}

.article-content {
  display: flex;
  flex-direction: column;
  padding: 50px;
  align-items: center;
}

.article-content img {
  width: 90%;
  height: auto;
}

.article-container h1 {
  font-weight: 800;
  font-size: 2.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  user-select: none;
  text-align: center;
}

.article-container .article-text {
  padding: 0 50px;
  line-height: 2rem;
  font-size: 1.5rem;
  width: 100%;
  max-width: 47rem;
}

.article-text .description {
  font-weight: 600;
  font-size: 1.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  user-select: none;
  line-height: 2rem;
  margin: 3rem 0;
}

.article-text h2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2.25rem;
  line-height: 1.4;
  color: rgb(252, 180, 47);
  display: flex;
  justify-content: center;
  text-align: center;
}

.article-text p {
  color: inherit;
  opacity: 0.8;
  line-height: 1.6rem;
  font-size: 1.4rem;
}

.article-text strong {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ------------------------MEDIA------------------------ */
@media (max-width: 500px) {
  .article-content img {
    width: 100%;
    height: auto;
    margin-left: 12px;
  }

  .article-content h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}
