.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

body{
    background-color: rgba(45,45,45,0.4);
    margin: 0px;
}

h1{
    font-family: fantasy;
    font-size: 3em;
    border-bottom: 2px solid pink;
    border-right: 2px solid pink;
    width: 400px;
    text-align: center;
    box-shadow: 4px 4px 4px #888888;
    margin-top: 10px;
}

img{
    width: 300px;
    height: 300px;
    margin: 50px;
    transition: all 1s;
}

img:hover{
    transform: scale(1.7);
}