/* Ensure the entire page has a black background */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #000000;
  font-family: sans-serif;
  color: white;
  text-align: center;
}

/* Main container to center and limit width */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1em;
}

/* Band logo */
.logo {
  width: 30%;
  max-width: 250px;
  height: auto;
  margin-top: 1em;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* YouTube video image */
.main-video {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 2em 0;
}

/* Social icon bar */
.socials {
  margin: 2em 0;
}

/* Remove default link outlines and borders */
a {
  text-decoration: none;
  border: none;
  outline: none;
}

a:focus,
a:active {
  outline: none;
  border: none;
}

/* Social media icons */
.icon {
  width: 36px;
  margin: 0 10px;
  vertical-align: middle;
  border: none;
  outline: none;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.3);
}

/* Copyright footer */
.footer {
  font-size: 12px;
  color: gray;
  margin-top: 2em;
}

/* Responsive styles for mobile */
@media screen and (max-width: 600px) {
  .logo {
    width: 50%;
  }

  .icon {
    width: 28px;
    margin: 0 6px;
  }

  .main-video {
    width: 100%;
  }
}
