/* COINS ANIMATION STYLES */

/* ANIMATION START */
/* ---------v1--------- */

/* .profile-container {
  display: flex;
  justify-content: center;
  perspective: 800px;
  margin-top: 2rem;
} */

.coin {
  /* width: 200px; */
  height: 200px;
  aspect-ratio: 1 / 1;
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
  margin-right: 2rem;
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 50%;
}

.face.front { transform: rotateY(0deg); }
.face.back  { transform: rotateY(180deg); }

@keyframes spin-m {
  to { transform: rotateY(720deg); }
}

.spin-m {
  animation: spin-m 2s ease-in-out forwards;
}

/* ANIMATION END */

/* MOBILE-VIEW */
/* Smartphones */
@media screen and (max-width: 306px) {
  .coin {
      height: 95px;
      margin-right: 0rem;
  }
}
@media screen and (min-width: 307px) and (max-width: 342px) {
  .coin {
      height: 120px;
      margin-right: 0rem;
  }
}
@media screen and (min-width: 343px) and (max-width: 630px) { 
    .coin {
        height: 150px;
        margin-right: 0rem;
    }
 }

/* Tablets vertically + huge Smartphones horizontally */
/* @media screen and (min-width: 631px) and (max-width: 768px) { 
    .coin {
        height: 170px;
    }
 } */
