body {
  margin: 0;
  padding: 0;
  cursor: cell;
  box-sizing: border-box;
  background-image: url(./../img/background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.music-icon {
  animation-name: wave;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
  font-size: 48px; /* Adjust the size as needed */
  color: #bb55ba; /* On state color */
  cursor: pointer;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(14deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(14deg);
  }
  50% {
    transform: rotate(-4deg);
  }
  60% {
    transform: rotate(10deg);
  }
  70% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.music-icon.off {
  color: #999; /* Off state color */
}
.set-hero-img {
  background: url(./../img/ugy.jpg);
  background-color: #faf4e8;
  background-repeat: no-repeat;
  background-position: center;
  height: 300px;
}

.contaner {
  background-image: url(./../img/giphy.gif);
}

.hero-img-cont {
  background-image: url(./../img/samp.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  width: fit-content;
  height: fit-content;
  position: relative;
  transition: 0.2s all ease-in-out;
}

.biobut {
  background-image: url(./../img/button.png);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5deb3;
  border: 0;
  font-size: 32px;
  margin: auto;
  padding: 14px 80px 14px 65px;
  cursor: pointer;
  font-weight: 600;
}

.leadimg {
  transform: rotate(17deg);
}

.blockquote-wrapper {
  backdrop-filter: blur(5px);
  width: fit-content;
  display: flex;
  border-radius: 10px;
}

/* Blockquote main style */
.blockquote {
  position: relative;
  font-family: "Barlow Condensed", sans-serif;
  max-width: 620px;
  margin: 20px auto;
  align-self: center;
}

/* Blockquote header */
.blockquote h1 {
  font-family: "Abril Fatface", cursive;
  position: relative; /* for pseudos */
  color: #e74848;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  border: 2px solid #fff;
  border: solid 2px;
  border-radius: 20px;
  padding: 25px;
}

/* Blockquote right double quotes */
.blockquote h1:after {
  content: "";
  position: absolute;
  border: 2px solid #e74848;
  border-radius: 0 50px 0 0;
  width: 60px;
  height: 60px;
  bottom: -62px;
  left: 50px;
  border-bottom: none;
  border-left: none;
  z-index: 3;
}

.blockquote h1:before {
  content: "";
  position: absolute;
  width: 80px;
  border: 6px solid #e74848;
  bottom: -3px;
  left: 50px;
  z-index: 2;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
  .blockquote h1 {
    font-size: 3rem;
    line-height: 1.2;
  }
}

/* Blockquote subheader */
.blockquote h4 {
  position: relative;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding-top: 15px;
  z-index: 1;
  margin-left: 150px;
  padding-left: 12px;
}

.blockquote h4:first-letter {
  margin-left: -12px;
}

.card-list {
  border: 2px solid #e74848;
  border-radius: 20px;
  color: #f5deb3;
  backdrop-filter: blur(5px);
}
