* {
  font-family: 'Inter', sans-serif;
}

html {
  width: 100%;
}

body {
  margin: 0;
  padding: 2rem 5rem;  
  text-align: justify;
}

h1 {
  font-size: 1.5rem;
  width: fit-content;
  font-weight: 500;
  line-height: 1.75rem;
  font-family: 'Titillium Web';
}

h1:first-letter {
  text-transform: uppercase;
}

p, li, ol, ul, span {
  font-size: 1rem;
  line-height: 1.5rem;
}

ul::marker, li::marker {
  color: #7528BE;
}

#header {
  display: flex;
  width: fit-content;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

/* // media queries */
@media screen and (max-width: 768px) {

  body {
    padding: 2rem;  
  }

  h1 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5rem;
  }

  p, li, ol, ul, span {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}