* {
  margin: 0;
  padding: 0;
}

/* this is the 'perfect full page background image' as per https://css-tricks.com/perfect-full-page-background-image/ */
/*
html { 
  background: url(images/subtle_tantra_cover_notext_blur.webp) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
*/

p {
  margin-left: 2%;
  margin-top: 2%;
  margin-right: 2%;
  margin-bottom: 2%;
  width: 70%;
  text-align: left;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-variant-ligatures: normal;
  font-size: 1.25rem;
  letter-spacing: normal;
  color: #777777;
}

a {
  font-weight: normal;
  color: #5500cc;
  text-decoration: none;
}

a:visited {
  font-weight: bold;
  color: #5500cc;
  text-decoration: none;
}

img {
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 0%;
  margin-bottom: 2%;
  max-width: 100%;
  height: auto;
}

.img_top {
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 2%;
  margin-bottom: 2%;
}


strong {
  font-weight: 600;
  }

h1 {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 2rem;
  color: #5500ff;
  margin-left: 2%;
  margin-top: 0%;
}


h2 {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #00c8ff;
  margin-left: 2%;
  margin-top: 2%;
  margin-bottom: 1%;
}

h3 {

}

h4 {
  margin-left: 2%;
}

.footer {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: normal;
  color: #999999;
  margin-left: 2%;
  margin-top: 2%;
  margin-bottom: 2%;

}

/* Album cover play icon overlay */
.album-link {
  display: inline-block;
  position: relative;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.album-link img {
  display: block;
  margin: 0;
}

.play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.play-icon-overlay::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}

/* Desktop: hide by default, show on hover */
@media (hover: hover) {
  .play-icon-overlay {
    opacity: 0;
  }

  .album-link:hover .play-icon-overlay {
    opacity: 1;
  }
}
