body {
  background: #f0f2f5;
}

.card {
  /* Add shadows to create the "card" effect */

  margin: 10px;
  padding: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 10px;
  position: relative;
  width: 400px;

}


div.bgImg img {
  width: 100%;

}

div.links a div {
  position: absolute;
  z-index: 15
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Add some padding inside the card container */
.container {
  padding: 2px 16px;
  border-radius: 10px;
}


/* progressbar */
#progress-bar {
  --scrollAmount: 0%;
  background-image: linear-gradient(120deg, #FF7721 0%, #11307e 100%);
  width: var(--scrollAmount);
  height: 4px;
  position: fixed;
  top: 0.2px;
  z-index: 100;
}

::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 15px;
  box-shadow: inset 0 0 1px rgba(109, 109, 109, 0.5);
  background: #FF7721;
}

/* play */

.menu_icon i {
  cursor: pointer;
  left: 20px;
  color: #eb5d1e;
  position: absolute;
  text-align: center;
  width: 40px !important;
  height: 40px !important;
}

.menu_icon2 i {
  cursor: pointer;
  color: #eb5d1e;
  width: 40px !important;
  height: 40px !important;

}


/* music player css */
.img_container1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
    background: #ce6e2542;
    box-shadow: inset 5px 5px 16px #c5c5c5,
        inset -5px -5px 16px #fbfbfb;
}



.anime {
  animation: rotateimage 20s linear infinite;


}



@keyframes rotateimage {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



.circle1 {
  background:#ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 2px #0000001a;
  

}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #ff6b2c4f;
  }

  100% {
    box-shadow: 0 0 0 20px #fff1eb4f;
  }
}

.icon {
  position:absolute;
  display: flex;
  justify-content: space-between;
  width: 40px;
  height: 30px;
}

.animation {
  width: 5px;
  height: 40px;
  background-color: #ff972e;
  border-radius: 5px;
  transform-origin: bottom;
  animation: bounce 2.5s ease infinite alternate;
  content: '';
}

@keyframes bounce {
  10% {
    transform: scaleY(0.3);
    /* start by scaling to 30% */
  }

  30% {
    transform: scaleY(1);
    /* scale up to 100% */
  }

  60% {
    transform: scaleY(0.5);
    /* scale down to 50% */
  }

  80% {
    transform: scaleY(0.75);
    /* scale up to 75% */
  }

  100% {
    transform: scaleY(0.6);
    /* scale down to 60% */
  }
}

.animation:nth-of-type(2) {
  animation-delay: -2.5s;
  /* Start at the end of animation */
}

.animation:nth-of-type(4) {
  animation-delay: -3.9s;
  /* Start mid-way of return of animation */
}


/* Styles for website counter container */
.website-counter {
  color: rgb(255, 255, 255);
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 5px;
  background-color: #ff972e;
  /* width: 50px; */
  /* box-shadow: 0px 0px 1px 1px #0000001a; */
  /* margin-left: 10px; */
    box-shadow: inset 5px 5px 16px #ff972e,
        inset -5px -5px 16px rgba(0, 0, 0, 0.226);
}

/* Styles for reset button */
#reset {
  margin-top: 50px;
  background-color: #008cba;
  cursor: pointer;
  font-size: 18px;
  padding: 8px 20px;
  color: white;
  border: 20px;
}

.social-icon:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.social-icon {
  box-shadow: 0 1px 3px 0 #9e9e9e;

}

/*count down style */

/* .container1 {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3em;
}

.container1 h1 {
  font-weight: 500;
  color: rgb(182, 182, 182);
  text-align: center;
} */

#countdown {
  color: rgb(34, 34, 34);
  display: flex;
  justify-content: space-around;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

#countdown .circle {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

#countdown .circle svg {
  position: absolute;
  width: 68px;
  height: 68px;
  transform: rotate(270deg);
  border-radius: 50%;
  justify-content: center;
  border-top-left-radius: 50%;
  box-shadow: 5px 5px 16px #a4a4a46b;
  
}

#countdown .circle svg circle {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke-width: 3;
  /* stroke:#11307e; */
  stroke-linecap: round;
  transform: translate(5px, 5px);
}



#countdown .circle svg circle:nth-child(2) {
  stroke: var(--clr);
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
}

#countdown div {
  position: absolute;
  text-align: center;
  font-weight: 500;
  color: rgb(39, 39, 39);
  font-size: 1.1em;
  line-height: 0.8em;
  border-radius: 50%;

  
  
}

#countdown div span {
  font-size: 0.35em;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  
}


.intro-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: auto, ui-monospace;
}

.names {
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 700;
  color: #4b4b4b;
  line-height: 0;
  text-align: center;
}

.names__and-sign {
  font-size: 40px;
  color: #c9b375;
}

.date-text {
  font-size: 15px;
  text-transform: uppercase;
  color: #aaaaaa;
  padding: 30px;
  font-family: serif;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}