*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body{
    background: #121317;
}
.wrapper{
    padding: 20px;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
    height: 100vh;
    margin: auto;
}
.container{
    width: 28vmin;
    height: 28vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: #21242b;
    border-bottom: 10px solid #00a566;
}
i{
    color: #00a566;
    font-size: 2.5em;
    text-align: center;
}
span.num{
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
}
span.text{
    color: #e0e0e0;
    font-size: 1em;
    text-align: center;
    padding: 0.7em 0;
    font-weight: 400;
    line-height: 0;
}
@media screen and (max-width:1024px){
 .container{
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
 }
}
@media screen and (max-width:768px){
 .wrapper{
    flex-wrap: wrap;
    gap: 30px;
 }
 .container{
  width: calc(50% - 40px);
  height: 30vmin;
  font-size: 14px;
 }
}
@media screen and (max-width:480px){
 .wrapper{
   gap: 15px;
 }
 .container{
   width: 100%;
   height: 25vmin;
   font-size: 8px;
 }
}