html {
  display: flex;
  margin: 0 auto;
  min-height: 100vh; /* Set the content div height to 100% of the viewport height */
  align-items: center; /* Center the content horizontally */
  justify-content: center; /* Center the content vertically */
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  margin: 0;
  background-image: url('bg.png');
  background-size: contain;
  background-color: black;
  flex-direction: column; /* Change the flex direction to column */
}

.content {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column; /* Change the flex direction to column */
  align-items: center; /* Center the content horizontally */
  justify-content: center; /* Center the content vertically */
  text-align: center;
  max-width: 666px;
  margin: 0 auto; /* Center the content horizontally */
  padding-bottom: 0;
}

#logo {
  min-width: 30px;
  width: 70%;
}

p {
  width: 100%; /* Make the paragraph width 100% */
  box-sizing: border-box; /* Include padding and border in the width calculation */
  padding: 0 20px; /* Add some padding for better readability */
}

.contacts {
  display: flex;
  justify-content: center;
  text-align: center;
  /* padding-top: 10px; */
  gap: 15px;
}

a {
  align-items: center;
  display: inline-flex;
}

.contact {
  max-width: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Box shadow for a subtle shadow effect */
  filter: invert();
}

.songs {
  font-size: small;
  font-style: italic;
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;  
}

.band {
  width: 65%;
}

hr {
  display: flex;
  width: 100px;
  opacity: 0.25;
}

footer {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
  justify-content: center; /* Center the content vertically */
  flex-wrap: wrap;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: smaller;
  color: rgba(255, 255, 255, 0.85);
}