* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Diphylleia', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #000;
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  background: rgb(253, 156, 190);
  padding: 1rem 0;
}

header h1 {
  font-family: 'Apricot', sans-serif;
  text-align: center;
  color: #fff;
text-shadow:
    2px 2px 0 #000,
    -2px -2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    2px 0px 0 #000,
    -2px 0px 0 #000,
    0px 2px 0 #000,
    0px -2px 0 #000;
  }

nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 1rem;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.hero {
  color: #000;
  padding: 5rem 0;
  text-align: center;
}

.hero h2 {
  font-family: 'Apricot', sans-serif;
  font-size: 3rem;
}

.hero p {
  font-size: 1.5rem;
}

.about,
.menu,
.contact {
  padding: 2rem 0;
  text-align: center;
}

.about h2,
.menu h2,
.contact h2 {
  font-size: 2rem;
  color: rgb(253, 156, 190);
  margin-bottom: 1rem;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}