*{
    font-family: 'poppins',sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}
body{
    height: 100vh;
    width: 100vw;
}
.container{
    background: linear-gradient(45deg,blueviolet,lightgreen);
    padding: 15px 10%;
    padding-bottom: 100px;
}
.container h1{
    text-align: center;
    padding-bottom: 15px;
    color: white;
    text-shadow: 0 5px 10px rgba(0,0,0,.2);
    font-size: 50px;
}
.container .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
    gap: 15px;
}

.container .box-container .box{
    box-shadow: 0 5px 10px 5px;
    border-radius: 5px;
    background: white;
    text-align: center;
    padding: 30px 20px;
}
.container .box-container .box img{
    height: 80px;
}
.container .box-container .box h3{
    color: gray;
    font-size: 22px;
    padding: 10px 0;
}
.container .box-container .box h3{
    color: gray;
    font-size: 15px;
    line-height: 1.8;
}
.container .box-container .box .btn{
    margin-top: 12px;
    display: inline-block;
    background: rgb(8, 8, 8);
    color: white;
    font-size: 17px;
    background-repeat: 5px;
    padding: 8px 25px;
    border-radius: 6px;
}
.container .box-container .box .btn:hover{
    letter-spacing: 1px;
    background: rgb(244, 130, 30);
    font-weight: bold;
    transition: .5s;
}
.container .box-container .box:hover{
    box-shadow: 0 10px 15px rgba(0,0,0,.3);
    /*transform: scale(1.05);*/
    transform: translate(10px,50px);
}
@media (max-width: 650px){
    .container{
        padding: 20px;
    }
}
