* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.hero{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #36b2ff, #8ef1d9);
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.card{
  width: 400px;
  height: 450px;
  background: linear-gradient(to bottom, #4ca8f7, #a2f4e4);
  border-radius: 8px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
}
.sneaker{
 min-height: 35vh;
 display: flex;
 justify-content: center;
 align-items: center;
  margin: 5px;
}
.image img{
    width: 100px;
    height: 90px;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    transition: all 0.5s ease-out;
}
.circle{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(
    to right,
  rgba(102, 101, 101, 0.75),
  rgba(8, 83, 156, 0.75));
   z-index: 1;
}
.info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title{
    margin-top: -10%;
    transition: transform 0.5s ease;
}
.text{
    font-size: 16px;
    transition: transform 0.5s ease;
}
.sizes button{
    padding: 4px 24px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    margin-top: 7%;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
     transition: transform 0.5s ease;
}
button.active {
background: #585858;
color: white;
}
.purchase{
  transition: transform 0.5s ease;
}
.purchase button{
 padding: 5px 40px;
 margin-top: 30%;
 border-radius: 15px;
 border: none;
 background-color: #36b2ff;
 color: #fff;
 font-size: 17px;
 font-weight: 400;
 cursor: pointer;
}


@media screen and (max-width: 600px) {
 .card{
   width: 90%;
   height: 70%;
 }
 .circle{
  width: 160px;
  height: 160px;
  margin-top: -35px;
 }
 .image img{
  margin-top: 30px;
  width: 160px;
 }
  .title{
    font-size: 34px;
    padding-top: -15px;
  }
  .text{
   font-size: 17px;
   padding-top: 14px;
  }
  .sizes{
    padding-top: 16px;
  }
  .purchase{
    font-size: 25px;
  }
}
