html{
  height: 100%;
}

body {
  font-family: 'Baloo Da 2', sans-serif;
  background-color: #fbf6ee;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  height: 100%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(to right, #ffe6f0, #fff3cc);
  padding: 2em;
  border-bottom: 2px solid #eee;
  gap: 2em;
  border-bottom-right-radius: 30%;
}

header h1 {
  font-size: 2rem;
  margin: 0;
  color: #a7002d;
}

main {
  padding: 2em;
  flex: 1;
}

footer {
  text-align: center;
  padding: 0em;
  margin-top: 0em;
  background-color: #fae4eb;
  color: #777;
  font-size: 0.95em;
  bottom: 0px;
  width: 100%;
  border: solid #f6e7cc ;
  box-shadow: 0 0 10px #ccc;
  border-top-left-radius: 70%;
}
footer a {
  color: #aa0033;
  text-decoration: none;
  font-weight: bold;
}
footer a:hover {
  text-decoration: underline;
}

.home-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #fff8dc;
  color: #aa0033;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.home-button:hover {
  background-color: #fff0b3;
  transform: scale(1.3);
}

.bands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin-top: 1em;
  height: auto;
}
.bands a {
  text-align: center;
  width: 150px;
  text-decoration: none;
  color: #222;
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
}
.bands a:hover {
  transform: scale(1.05);
  background-color: #ffe6cc;
}
.bands img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.bands a:hover img {
  transform: scale(1.1);
}
.bands p {
  margin-top: 0.5em;
  font-weight: bold;
  font-size: 1.1em;
}