/* General Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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);
}

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: #ffffff;
}

.hero h2 {
  font-size: 30rem;
  margin-bottom: 20px;
}

main {
  font-size: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

section {
  margin-bottom: 50px;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.artpiece {
  margin-bottom: 30px;
  text-align: center;
}

.artpiece img {
  max-width: 100%;
}

.artpiece h3 {
  font-size: 1.5rem;
  margin-top: 15px;
}

.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: #333;
  color: #fff;
}

.artpiece h3 {
  color: #fff;
}

.about li strong {
  color: #fff;
}

footer {
  background-color: #111;
}

.font { 
  font-family: 'Dancing Script', cursive;
}