/* Import the Roboto font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header nav ul {
  display: flex;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

header nav ul li {
  margin-right: 1rem;
}

header nav ul li:last-child {
  margin-right: 0;
}

header nav ul li a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  text-transform: none;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.recent {
  padding-left: 1.25rem;
}

.recent li {
  margin-bottom: 0.5rem;
}

a {
  color: #333;
  text-decoration: underline;
}

