
body {
  font-family: 'Myriad', sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

header {
  background-color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

..logo img {
  height: 120px !important;
  width: auto;
  max-height: none;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  margin-left: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

footer {
  background-color: white;
  text-align: center;
  padding: 1rem;
  font-weight: 900;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}
.portrait img {
  max-width: 600px;
  border-radius: 8px;
}
.section-divider {
  border: none;
  border-top: 2px solid #000;
  margin: 3rem auto;
  width: 80%;
}
