body {
  margin: 0;
  font-family: "Jeju Myeongjo", serif;
  background-color: #6f6997;
  color: white;
}
header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}
.logo img {
  width: 140px;
  height: auto;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 55px;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: black;
  font-family: "Jaini Purva", cursive;
  font-size: 26px;
}
.hero {
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  height: 720px;
  display: flex;
  align-items: center;
}
.hero-text {
  padding-left: 110px;
}
.hero h1 {
  font-family: "Jaini Purva", cursive;
  font-size: 88px;
  color: #f28b5b;
  margin: 0 0 10px 0;
  max-width: 650px;
  line-height: 1;
  text-shadow: 2px 2px 0 white;
}
.hero h2 {
  font-family: "Jaini Purva", cursive;
  font-size: 48px;
  color: white;
  margin: 10px 0;
}
.hero p {
  font-family: "Jeju Myeongjo", serif;
  font-size: 30px;
  color: white;
  margin: 0 0 35px 0;
}
.button {
  display: inline-block;
  background-color: #f28b5b;
  color: white;
  text-decoration: none;
  padding: 14px 42px;
  border-radius: 30px;
  font-family: "Jeju Myeongjo", serif;
  font-size: 24px;
}
.artists {
  background-color: #6f5b8e;
  text-align: center;
  padding: 35px 50px 60px;
}
.artists h2 {
  font-family: "Jaini Purva", cursive;
  font-size: 72px;
  margin: 0 0 35px 0;
  color: white;
}
.artist-row {
  display: flex;
  justify-content: center;
  gap: 110px;
  margin-bottom: 40px;
}
.artist-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}
.artist-button {
  display: inline-block;
  background-color: #ef7447;
  color: white;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 12px;
  font-family: "Jaini Purva", cursive;
  font-size: 28px;
}
.lineup-button {
  font-size: 22px;
}
.donate-section {
  background-image: url("../images/donate.jpg");
  background-size: cover;
  background-position: center;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.donate-text h2 {
  font-family: "Jaini Purva", cursive;
  font-size: 82px;
  color: #ef7447;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 0 white;
}
.donate-text p {
  font-family: "Jeju Myeongjo", serif;
  font-size: 28px;
  color: white;
  margin: 0;
  text-shadow: 1px 1px 0 #ef7447;
}
footer {
  background-color: #d8896d;
  text-align: center;
  padding: 45px 20px 35px;
}
footer h3 {
  font-family: "Jeju Myeongjo", serif;
  font-size: 42px;
  margin: 0 0 10px 0;
  font-weight: normal;
}
footer p {
  font-family: "Jeju Myeongjo", serif;
  font-size: 24px;
  margin: 8px 0;
}
.copyright {
  font-size: 16px;
  margin-top: 10px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 25px;
}
.social-icons img {
  width: 55px;
  height: 55px;
}