*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.card-container{
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    transform-style: preserve-3d;
    min-height: 90vh;
    width: 23rem;
    border-radius: 30px;
    padding: 0rem 4rem;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
}

.header{
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoe-img{
    width: 10rem;
    z-index: 2;
    transition: all 0.75s ease-out;
}

.ciricle{
    width: 8rem;
    height: 8rem;
    background: linear-gradient(
      to right,
      rgba(245, 70, 66, 0.75),
      rgba(8, 83, 156, 0.75)
    );
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.title{
    font-size: 2rem;
    transition: all 0.75s ease-out;
}

.description{
    font-size: 0.9rem;
    padding: 2rem 0rem ;
    color: #585858;
    font-weight: lighter;
    transition: all 0.75s ease-out;
}

.sizes {
    display: flex;
    justify-content: center;
    transition: all 0.75s ease-out;
}

 .sizes button {
     margin-right: 10px;
    padding: 0.6rem 2.25em;
    background: none;
    border: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    color: #585858;
}

.unique {
    background: #585858 !important;
    color: white !important;
}


.purchase {
    margin-top: 5rem;
    transition: all 0.75s ease-out;
}

.purchase button {
    width: 100%;
    padding: 1rem 0rem;
    background: linear-gradient(
        rgb(216, 70, 70),
        rgb(255, 122, 69)
    );
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 30px;
    font-weight: bolder;
}
  
