
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #faf7f2;
  color: #333;
}
header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #fff;
  font-weight: bold;
}
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
}
.hero {
  text-align: center;
}
.hero img {
  max-width: 100%;
  height: auto;
}
.hero h2 {
  margin-top: -2rem;
  font-size: 1.5rem;
}
.about {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  align-items: center;
}
.about .text {
  flex: 1;
}
.about .images {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about .images img {
  max-width: 100%;
  margin-bottom: 1rem;
}
.contact {
  padding: 2rem;
  text-align: center;
}
.contact .icons img {
  width: 32px;
  margin: 0 10px;
}
