body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fffafc;
  color: #4b2e2e;
}
header {
  padding: 2em 2em;
  text-align: center;
  color: #fff;
}
header h1 {
  font-family: 'Brush Script MT', cursive;
  font-size: 3em;
  color: #333; /* Dark text */
  text-shadow: 4px 4px 6px rgba(255, 209, 220, 1);
  margin: 0.2em 0.2em;
}
.cta-btn {
  background: #87CEFA;
  color: black;
  padding: 1em 1em;
  border: none;
  border-radius: 30px;
  font-size: 1em;
  margin: 0.2em 0.2em;
  z-index: 1;
  cursor: pointer;
  }
.center {
  text-align: center;
}
section {
  padding: 1em 1em;
  max-width: 1000px;
  margin: auto;
}
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1em 1em;
}
.about img {
  max-width: 100%;
  border-radius: 0.2em;
}
.about-text {
  flex: 1 1 300px;
}
.gallery {
  display: grid;
  position: relative;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.2em 0.2em;
}
.gallery > div {
  padding: 0.2em;
}
.gallery img {
  width: 100%;
  border-radius: 5px;
}
footer {
  background: #ffe4ec;
  padding: 2em;
  text-align: center;
  font-size: 0.9em;
}
img, button {
  max-width: 100%;
  height: auto;
}

.location {
  text-shadow: 4px 4px 6px rgba(255, 209, 220, 1);
}