
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  text-align: center;
  padding-top: 1.5em;
  font-size: 32px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

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

main {
  padding: 20px;
}
/** new CSS to match new HTML structure introduced by freelancer Al DeLuca (July 22, 2025) */
#gallery1, #gallery2, #gallery3 {
  border: solid #333 5px;
}
.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: solid #333333 3px;
  border-bottom: solid #333333 3px;
}
.overlay {
  background: rgba(0, 0, 0, 0.4); /** opacity set to allow bottom layer to be seen through from top layer */
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.artist-name {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  text-align: center;
}
.tagline {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  margin-top: .5rem;
  font-weight: 500;
}
.headline {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  text-align: center;
}

.artwork {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 350px; /** modified from 300px to give better exposure to sellable work */
  text-align: center;
}
/** remaining CSS left untouched */
.artwork img {
  max-width: 100%;
  height: auto;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  bottom: 0;
}

