<header>

  <nav>
    <ul>
      <li><a href="#">Home</a></li>
      <li><a href="#">Commission Form</a></li>
      <li><a href="#">About Us</a></li>
    </ul>

/* Navigation styles */
header {
  background-color: #f1f1f1;
  padding: 20px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

/* Home screen styles */
.banner {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

.latest-paintings {
  display: flex;
  justify-content: space-between;
}

.latest-paintings img {
  max-width: 200px;
}

/* Header styles */
header {
  position: relative;
}

.logo {
  position: absolute;
  top: 20px;
  right: 47px;
  width: 150px;
  height: auto;
}

.social-media {
  display: flex;
  justify-content: flex-end;
  margin-top: 120px;
}

.social-media a {
  display: inline-block;
  margin-right: 10px;
}

.social-media img {
  width: auto;
  height: 30px;
}

/* Painting banner styles */
.painting-banner {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.painting-scroll-container {
  width: 100%;
  overflow: hidden;
}

.painting-scroll {
  display: flex;
  width: 100%;
  animation: scroll 10s linear infinite;
}

.painting-scroll img {
  width: auto;
  max-height: 400px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);
  }
}


  </div>
</section>
