/* General Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Lucida Handwriting', sans-serif;
    font-size: 25px;
    line-height: 1.5;
    color: #333;
  }
  
  header {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav li a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: all 0.3s ease;
  }
  
  nav li a:hover {
    background-color: #333;
    color: #fff;
  }
  
  .hero {
    margin-top: 50px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.5rem;
    color: #888;
  }
  
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
  }
  
  section {
    margin-bottom: 50px;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .artpiece {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .artpiece img {
    max-width: 100%;
  }
  
  .artpiece h3 {
    font-size: 1.5rem;
    margin-top: 20px;
  }
  
  .artpiece p {
    font-size: 1rem;
    color: #888;
  }
  
  .about ul {
    list-style: none;
    margin-top: 20px;
  }
  
  .about li {
    margin-bottom: 10px;
  }
  
  .about li strong {
    font-weight: bold;
    margin-right: 10px;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  footer p {
    font-size: 1rem;
  }

  /* Dark mode styles */

body {
    background-color: #333;
    color: #fff;
  }
  
  header {
    background-color: #222;
  }
  
  nav li a {
    color: #fff;
  }
  
  nav li a:hover {
    background-color: #fff;
    color: #333;
  }
  
  .hero {
    color: #fff;
  }
  
  section {
    background-color: #222;
    color: #fff;
  }
  
  .artpiece h3 {
    color: #fff;
  }
  
  .about li strong {
    color: #fff;
  }
  
  footer {
    background-color: #111;
  }

  .font { 
    font-family: 'Dancing Script', cursive;
  }

  .picture-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
  }
  
  .picture-box {
    width: 450px;
    height: 700px;
    margin: 20px;
    border: 5px solid #fff;
    box-shadow: 5px 5px 5px #ccc;
    transition: transform 0.3s ease-in-out;
  }
  
  .picture-box:hover {
    transform: scale(1.05);
  }
  
  .picture-box img {
    width: 100%;
    height: 80%;
    object-fit: cover;
  }
  
  .picture-caption {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    color: #333;
  }

  .center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }