* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  font-family: "Perpetua Titling MT", "Cinzel", serif;
  color: white;
  text-align: center;
  padding-top: 120px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
}

header h1 {
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

header h2 {
  font-size: 30px;
  margin-top: -40px;
}

nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  width: 100%;
  max-width: 500px;

  margin: 0 auto;
  text-align: center;
}

nav a {
  color: rgb(255, 244, 97);
  text-decoration: none;
  font-size: 22px;
  transition: 0.2s;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 8px white;
}

.summary {
  max-width: 700px;
  margin: 60px auto 0 auto;
  text-align: center;
  line-height: 1.8;
  font-size: 18px;
}

.summary h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.project-summary {
  max-width: 700px;
  margin: 20px auto 0 auto;
  text-align: center;
  line-height: 1.8;
  font-size: 18px;
}

.love-section {
  max-width: 700px;
  margin: 80px auto 0 auto;
  text-align: center;
}

.love-section p {
  font-size: 22px;
  line-height: 1.8;
}