.main-img {
	border-radius: 100px;
	margin-top: 25px;
  margin-bottom: -10px;
  width: 125px;

  display: block;
  margin-left: auto;
  margin-right: auto;


}

body {

  margin: 0;
  background-image: url("../img/bg_img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;


  color: white;
  margin: -10px;

  text-align: center;

  /* Mouse Cursor ======================================== */
  cursor: url("../img/cursors/cursor.png") 16 16, auto;

}

.bg-audio {
  display: block;
  width: 90%;
  max-width: 320px;
  margin: 20px auto 50px auto;
/* Mouse Cursor ======================================== */
  cursor: url("../img/cursors/cursor-click.png") 16 16, pointer;
}


.link {
  display: inline-block;
  margin: 5px;
  text-decoration: none;

/* Mouse Cursor ======================================== */
  cursor: url("../img/cursors/cursor-click.png") 16 16, pointer;
}

.link img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}





/* phone fixes section :P ==============================*/

@media screen and (max-width: 600px) {
  .main-img {
    width: 150px;
  }

  h1 {
    font-size: 2rem;
    margin: -10px;
  }

  h2 {
    font-size: 1rem;
    margin: -10px;
  }

  p {
    padding: 0 20px;
  }

  .bg-audio {
    width: 90%;
    max-width: 300px;
    margin-bottom: 50px;
  }

  .carousel {
    width: 96%;
    margin-top: 30px;
  }

.group {
	gap:0.7em;
}

  .card {
    flex: 0 0 3.4em;
    height: 4em;
    font-size: 2rem;
    padding: 0.5em;
  }
}

.carousel {

  margin: 100px auto;
  width: 96%;
  max-width: 1500px;

  display: flex;
  overflow: hidden;

}

.carousel::-webkit-scrollbar {
  display: none;

}

.group{
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 1em;
  animation: spin 10s infinite linear;
  padding-right: 1em;

}

.card {
  flex: 0 0 5em;
  height: 5em;
  padding: 1em;
  background: cornflowerblue;
  font-size: 3rem;
  border-radius: 2em;
  text-align: center;
  align-content: center;

  display: grid;
  place-items: center;
}

@keyframes spin {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}


/* cards ==============================*/




.choice-menu {
  width: 96%;
  max-width: 1300px;
  margin: 60px auto;

  display: flex;
  justify-content: center;
  align-items: center;
}

.choice-card {
  position: relative;
  display: block;

  width: 240px;
  height: 360px;
  margin: 0 -25px;

  border-radius: 25px;
  overflow: hidden;
  text-decoration: none;
  color: white;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

  transform: rotate(var(--rotate)) translateY(var(--move));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.choice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.choice-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;

  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: 2px 2px 5px black;
}

.choice-card:hover {
  z-index: 10;
  transform: rotate(0deg) translateY(-30px) scale(1.08);
}

.choice-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Card positions */
.choice-card:nth-child(1) {
  --rotate: -7deg;
  --move: 35px;
  z-index: 1;
}

.choice-card:nth-child(2) {
  --rotate: -4deg;
  --move: 15px;
  z-index: 2;
}

.choice-card:nth-child(3) {
  --rotate: 0deg;
  --move: 0px;
  z-index: 3;
  width: 270px;
  height: 390px;
}

.choice-card:nth-child(4) {
  --rotate: 4deg;
  --move: 15px;
  z-index: 2;
}

.choice-card:nth-child(5) {
  --rotate: 7deg;
  --move: 35px;
  z-index: 1;
}

/* Hide scrollbar but still allow scrolling */

/* Firefox */
html {
  scrollbar-width: none;}
/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
  display: none;}
/* Makes sure the page can still scroll */
body {
  overflow-y: scroll;}