body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #000000;
  color: white;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: #000000;
  padding: 20px;
}

header {
  text-align: center;
  padding: 20px 0;
}

.header-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

html, body {
  overflow-x: hidden;
}

header h1 {
  font-size: 2em;
  margin: 10px 0 0;
}

header p {
  font-size: 1.2em;
  margin-top: 5px;
}

.content {
  text-align: center;
}

.genre-image {
  display: block;
  width: 400px;
  height: 400px;
  object-fit: fill;
  margin: 20px auto;
}

.instagram {
  margin-top: 30px;
  text-align: center;
}

.events {
  margin-top: 30px;
}

.events ul {
  padding-left: 20px;
  text-align: left;
  display: inline-block;
}

.contact-form {
  margin-top: 40px;
  padding: 20px;
  border-radius: 10px;
}

.contact-form h2 {
  margin-top: 0;
  color: white;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: white;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="date"],
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background: #555;
  border: 1px solid #777;
  color: white;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background: #000000;
  border: 1px solid #777;
  color: white;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.contact-form input::placeholder {
  color: #eee;
  opacity: 1;
}

.contact-form select option:first-child {
  color: #aaa;
}

.contact-form button {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #666;
}

.genre-options {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.genre-options label {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 600px) {
  .genre-options {
    flex-direction: column;
  }

  .genre-image {
    width: 100%;
    height: auto;
  }
}
