body{
	margin: 0px;
}

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

}

h1 {
    font-family: fantasy;
    font-size: 3em;
    border: 2px solid pink;
    width:400px;
    text-align: center;
    -moz-box-shadow: 4px 4px 5px #888888;
    -ms-box-shadow: 4px 4px 5px #888888;
    -o-box-shadow: 4px 4px 5px #888888;
    -webkit-box-shadow: 4px 4px 5px #888888;
    box-shadow: 4px 4px 5px #888888;
    margin: 0px;
    margin-top: 20px;

}
img {
    width: 450px;
    height: 300px;
    margin:10px;
    transition: all 0.7s ;

}

img:hover {

		
        transform: scale(1.1);
}
