.artist-statement {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.artwork:hover .artist-statement {
  display: block;
}

  .artwork {
   style="position: center;   justify-content: center; max-width=100vw;"
  }

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .artworks {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  
  .artwork {
style="position: center;   justify-content: center; max-width=100vw;"
  }
}




/* Easy-to-read font and spacing */
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 36px;
  margin: 0 0 40px;
}

h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

p {
  margin: 0 0 20px;
}

/* Add this CSS code to your existing style.css file or create a new one */

#hero {
  background-image: url('artworks/ethereal_reverie.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #666;
}


/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff6600;
}


/* About Section */
#about {
  background-color: #ffffff;
  padding: 80px 0;
}

#about img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
#portfolio {
  background-color: #f5f5f5;

  size: cover;
  position: center;

  max-width=100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/*
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100vw, 100vw));
  gap: 20px;
}

.gallery img {
  width: 100vw;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
*/
/* Contact Section */
#contact {
  background-color: #ffffff;
  padding: 80px 0;
}

form input,
form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

form button {
  display: block;
  background-color: #ff6600;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form button:hover {
  background-color: #ff8533;
}

/* Footer */
footer {
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

footer p {
  font-size: 14px;
}

				