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%;
}

header h1 {
  text-align: center;
  margin-top: 3em;
  margin-bottom: 2em;
  color: #73003e;
  font-size: 2.2rem;
  margin-bottom: 0.3em;
}
header{
  text-align: center;
}

main pre {
  font-family: 'Noto Serif Bengali', serif;
  background: #fff8f2;
  max-width: 800px;
  margin: 0 auto 3em auto;
  padding: 1.2em;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.3em;
  line-height: 1.3em;
  white-space: pre-wrap;
  color: #222;
  font-weight: 900;
  padding-top: 0;
}

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);
}

.song-info {
  text-align: center;
  max-width: fit-content;
  margin:auto;
  background: #fff8dc;
  border-left: 6px solid #aa0033;
  padding: 1.2em 1.5em;
  padding-left: 100px;
  padding-right: 100px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.2em;
}

.song-info p {
  margin: 0.7em 0;
  font-weight: 500;
}

.song-info .info-row {
  margin: 0.5em 0;
}

.song-info .label {
  font-weight: bold;
  margin-right: 0.5em;
  color: #770022;
}

.song-info a {
  color: #aa0033;
  text-decoration: none;
  font-weight: bold;
}

.song-info a:hover {
  color: #d40000;
  text-decoration: underline;
}

.youtube-link {
  background-color: #cc0033;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
  margin-top: 0.7em;
}

.youtube-link:hover {
  background-color: #d62800;
  transform: scale(1.05);
}