@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

body {
  margin: 0;
  font-family: Lexend, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

header {
  background: #2c3e50;
  background-image: url("../images/hero.jpg");
  background-position-x: 80%;
  background-position-y: 40%;
  background-size: cover;
  color: white;
  padding: 15rem 2rem 20rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header h1 {
  font-size: 3rem;
  margin: 0;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  clip-path: polygon(0 0, 100% 100%, 0% 100%);
}

main {
  padding: 1rem 3rem;
  max-width: 800px;
  margin: auto;
}

h2 {
  color: #2c3e50;
}

ul {
  padding-left: 1.2rem;
}

ul > li {
  margin-bottom: 0.7rem;
}

a {
  color: rgb(207, 142, 0);
}

a:hover {
  color: rgb(231, 191, 105);
}

footer {
  background: #f5f5f5;
  text-align: center;
  padding: 2rem;
}

footer img {
  height: 150px;
}

blockquote p {
  margin-bottom: 0.2rem;
  font-style: italic;
}

blockquote cite {
  color: #888;
}

blockquote cite.author::before {
  content: "— ";
}

blockquote cite.author::after {
  content: ",";
}
