@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

.container {
  max-width: 1400px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
}

.container h1 {
  font-size: 2.5em;
  margin: 0.57em 0;
}

.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
  margin-top: 20px !important;
}

hr {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: silver;
}

.container h1:first-child,
.container h2:first-child,
.container h3:first-child,
.container h4:first-child,
.container h5:first-child,
.container h6:first-child {
  margin-top: 0 !important;
}

.container h2 {
  font-size: 2em;
}

.container h3 {
  font-size: 1.75em;
}

.container h4 {
  font-size: 1.5em;
}

.container h5 {
  font-size: 1.25em;
}

.container h6 {
  font-size: 1em;
}

.container p {
  font-size: 1em;
  margin: 0.5em 0;
}

.container ul,
.container ol {
  margin-left: 40px;
  padding-left: 0;
  list-style: initial !important;
  margin-top: 20px;
}

.container li {
  margin: 0.5em 0;
}

.container body .mce-content {
  padding: 50px !important;
}

.container blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  padding-left: 15px;
  margin: 1em 0;
  background-color: #f8f8f8;
  border-radius: 4px;
}

.container a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.container a:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Images */
.container img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.container code {
  font-family: "Courier New", Courier, monospace;
  background-color: #f8f8f8;
  padding: 2px 4px;
  border-radius: 4px;
}

.container .button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.container .button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .container h1 {
    font-size: 2em;
  }

  .container h2 {
    font-size: 1.75em;
  }

  .container p,
  .container li {
    font-size: 0.9em;
  }
}

@media (max-width: 600px) {
  .container h1 {
    font-size: 1.75em; /* Reduced from 2em */
  }

  .container h2 {
    font-size: 1.5em; /* Reduced from 1.75em */
  }

  .container h3 {
    font-size: 1.25em; /* Reduced from 1.5em */
  }

  .container h4 {
    font-size: 1.1em; /* Reduced from 1.25em */
  }

  .container h5 {
    font-size: 1em; /* Reduced from 1.1em */
  }

  .container h6 {
    font-size: 0.9em; /* Reduced from 1em */
  }

  .container p,
  .container li {
    font-size: 0.8em; /* Reduced from 0.9em */
  }

  .container a {
    font-size: 0.9em; /* Set anchor text size */
  }

  .container span {
    font-size: 0.9em; /* Set span text size */
  }

  .container div {
    font-size: 0.9em; /* Set div text size */
  }
}
