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

/* Fonts */
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2 {
  font-family: 'Lato', sans-serif;
}

/* Headings */
h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* Paragraphs */
p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}

/* Blockquote */
blockquote {
  margin: 1em 0;
  padding: 0.5em 1em;
  border-left: 5px solid #ccc;
}

blockquote p {
  font-style: italic;
}
