@import url('https://fonts.googleapis.com/css2?family=Krub&family=Poppins:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Noto Serif', serif;

  --text-base: 16px;
}

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

html,
body {
  padding: 0 16px;
  font-size: var(--text-base);
}

a{
  color: rgb(27, 151, 151);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

h1 {
  font-size: 1.875rem;
  line-height: 2.813rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 2.25rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.688rem;
}

h5 {
  font-size: 1rem;
  line-height: 1.5rem;
}

h6 {
  font-size: 0.875rem;
  line-height: 1.313rem;
}

p,
span,
ul,
li {
  font-family: var(--font-secondary);
  text-align: justify;
  font-size: 1rem;
  line-height: 1.438rem;
}

ul {
  list-style-type: disc;
}
li {
  margin-bottom: 0.4rem;
  
}

ul,
ol {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 0.8rem;
}

.container {
  margin: 0 auto; /* Center the container horizontally */
  padding-bottom: 2rem;
}

/* Media query for larger screens (e.g., screens wider than 1024px) */
@media screen and (min-width: 1024px) {
  .container {
    width: 50%; /* Adjust width for larger screens */
  }
}
