
/* Center the donate section */

.cash-btn.paypal-btn {
  background-color: #0c59e7 !important; /* blue */
}

.center-donate-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 20px 0;
}
.center-donate-btn form,
.center-donate-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Body and general layout */
body {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  font-family: Arial, sans-serif;
  color: black;
  text-shadow: 1px 1px 2px white;
  border: 2px solid grey;     
  border-radius: 15px;         
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 

  background-image: url('images/speaker-high-volume_padded_3000x3000.png'); 
  background-size: cover;     
  background-repeat: no-repeat; 
  background-position: center;  /* center */
}

#trackName {
  font-weight: 600;
  margin: 6px 0 12px 0;
  color: #000000f8;
  font-size: 16px;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  display: inline-block;
  background: rgba(123,44,255,0.12);
  border-radius: 999px; /* pill */
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.legal-disclaimer {
  font-size: 14px;
  color: color(from color srgb r g b);
  font-weight: bold;
  margin: 15px 0;
}

.legal-disclaimer a {
  color: navy;
  text-decoration: underline;
}


/* Cash App donation button */
.cash-btn {
  background-color: #00c244;  
  width: 80px;
  height: 80px;
  font-size: 28px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cash-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.cash-btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* images and audio */
img {
  margin: 10px 0;
}

audio {
  display: block;
  margin: 10px 0;
}

/* Headers */
h1, h2 {
  color: black;
  padding: 10px;
  margin: 10px 0;
}

header {
  margin: 10px 0;
}

.header-logo {
  max-width: 300px;           
  height: auto;
  margin: 10px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


#donate {
  text-align: center;
}


