*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.mn{
display:flex;
flex-wrap: wrap;
justify-content:space-evenly;
align-items: center;
}
.games{
    padding: 20px;
    background-color: rgba(22, 18, 18, 0.797);
}
.h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
}
.game{
    margin: 30px;
    height:250px;
    width: 350px;
    border: .5px black solid;
    border-radius: 18px;
    background-color:white;
    overflow: hidden;
    transition: width 1s;
    cursor: pointer;
    box-shadow: 2px 3px 10px black;
    transition: 1s;
}
.game:hover{
    transform: scale(1.1);
    box-shadow: 2px 3px 10px green;
}
a{
    text-decoration: none;
}
.first{
    height: 180px;

}
.first img{
    width: 100%;
    height: 100%;
}
.sec{
    padding:10px;
    display: flex;
    justify-content:left ;
   
}
.sec1{
    margin: 3px;
    width: 45px;
    height:45px;
    border: 1px black solid;
    border-radius: 10px;
    overflow: hidden;
    
}
.sec1 img{
    width: 100%;
    height: 100%;
}
.sec2{
    color:black;
    margin: 5px;
    font-weight: bolder;
    padding-left: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#games{
    text-align: center;
    font-size: 50px; 
    padding: 70px ; 
    color: white;
}
@media screen and (max-width:450px){
    .game{
        width: 280px;
    }
    .game:hover{
        width: 290px;
    }
    #games{
        font-size: 40px;
        padding: 10px;
    }
}