/* Import Google Font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
    
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF3CAC;
  background-image: -webkit-linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  background-image: -moz-linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  background-image: -o-linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  

}
.container {
    transition:2s cubic-bezier(.22,.68,0,1.71) ;
    transform: scale(1.2);

    cursor: pointer;
  position: relative;
  background-image: url("images/bg.png");
  background-size: cover;
  padding: 25px;
  border-radius: 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  
}
header,
.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 48px;
  margin-right: 10px;
}
h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
header .chip {
  width: 60px;
}
h6 {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
}
h5.number {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: 1px;
}
h5.name {
  margin-top: 20px;
}
.container .card-details {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (min-width:400x) and (max-width:799px) {
    .container{
        transform: scale(0.9);
    }
    .container:hover{
        transform: scale(1.0);
    
    }
    
}

.container:hover{
    transform: scale(1.3);
    
}
@media screen and (min-width:800x) and (max-width:1440px) {
    
    .container:hover{
        transform: scale(1.4);
    
    }
    
}
@media screen and (max-width:530px) {
    .container{
        transform: scale(0.8);
    }
    .container:hover{
        transform: scale(0.9);
    
    }
}
@media screen and (min-width:430px) and (max-width:530px) {
    .container{
        transform: scale(0.9);
    }
    .container:hover{
        transform: scale(1);
    
    }
}