@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
h1 {
  font-size: 1.5rem;
  font-family: serif;
  text-align: center;
}
h3 {
  font-size: 1.25rem;
  text-align: center;
  margin: 30px 0;
}
li {
  margin: 5px 0;
}
p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
  text-indent: 30px;
}
.image {
  width: 100%;
  display: flex;
  justify-content: center;
  img {
    width: 100%;
    max-width: 600px;
    object-fit: cover;
  }
}
