/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-screen background gif */
body {
  background: url('musicforwebsites.gif') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  width: 100vw;
  font-family: 'Bell MT', serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Semi-transparent overlay to make text readable */
.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark transparent */
  padding: 2rem;
  border-radius: 1rem;
  max-width: 90%;
  width: 600px;
}

/* Headline */
h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* Subheading */
p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Navigation links */
nav {
  margin-bottom: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

nav a:hover {
  border-color: white;
}

.show-list {
  list-style: none;
  padding: 0;
}

.show-list li {
  margin-bottom: 1.5em;
  font-size: 1.1em;
}

/* Mailing list form */
.signup-form {
  margin-top: 1.5rem;
}

.signup-form label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.signup-form input {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  width: 70%;
  max-width: 300px;
  margin: 0.5rem auto;
  display: block;
}

.signup-form button {
  padding: 0.5rem 1rem;
  background-color: white;
  color: black;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-form button:hover {
  background-color: #ddd;
}

/* Responsive text on small screens */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  p, nav a, .signup-form label {
    font-size: 1rem;
  }

  .signup-form input {
    width: 90%;
  }
}
.listen-links {
  margin-top: 2rem;
}

.listen-links a {
  display: inline-block;
  margin: 0.5rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.listen-links a:hover {
  border-color: white;
}
