img{
    width:400px;
    height:300px;
    margin:10px;
    transition:all 300ms;
}
.container{
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    
}

h2{
    
    text-align:center;
    font-family: 'Nunito', sans-serif;
    text-transform: capitalize;
    box-shadow: 4px 3px 4px 4px lightcoral;
}
img:hover{
    transform:scale(0.8);
}
footer{
    text-align: center;
    background-color: coral;
    width:100%;
    height: 100%;
}