@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f9f7f4;
  color: #2b2b2b;
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  margin-bottom: 80px;
}

section:last-child {
  margin-bottom: 0;
}

.intro h1 {
  text-align: center;
}

h1 {
  font-family: 'Playfair Display';
  font-size: 28px;
  white-space: nowrap;
  color: #2b2b2b;
  margin-bottom: 5%;
  font-weight: bold;
}

p {
  font-family: 'Crimson Text';
  letter-spacing: 0.4px;
  line-height: 131%;
  color: #2b2b2b;
}

span {
  font-size: 38px;
  font-weight: medium;
}

footer {
  text-align: center;
  border-top:  1px solid #E8E4DF;
}

footer p {
  font-family: 'Crimson Text';
  font-size: 18px;
  color: #2b2b2b;
  padding: 10px;
}