body {

  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);
}

main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 20px;
}

section {
	background-color: #f2f2f2;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	padding: 20px;
	margin-bottom: 20px;
	width: 30%;
}

h2 {
	color: #ffffff;
	margin-top: 0;
}

p {
	margin-bottom: 20px;
}

button {
	background-color: #333;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
}

button:hover {
	background-color: #666;
}

footer {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 10px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}
/* General Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1.5;
    color: #333;
  }
  
  header {
    background-color: #fff;
    padding: 20px;
    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: 20px;
    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;
  }