		body {
		    margin: 10px;
		    background: midnightblue;
		    border: 4px ridge aqua;
		    margin: 2%;
		    border-radius: 10px;
		    outline: 6px groove #fff;
		    outline-offset: 6px;
		    color: #fff;
		}
		
		       .gallery {
                    width:100%;
                    height: 300px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-top: 25px;
                    
                }
                .gallery img {
                    width: 10%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 10px;
                    border: 3px solid midnightblue;
                    outline: 2px solid #fff;
                    outline-offset: 2px;
                    transition: all ease-in-out 0,5s;
                    padding-left: 2px;
                }
                .gallery img:hover {
                    width: 50%;
                    height: 200%;
                    z-index: 1;
                }
                
                h1 {
                    color: light-gray;
                    font-family: helvetica;
                    font-style: cursive;
                    font-weight: normal;
                    text-align: center;
                    border: 4px double #fff;
                    border-radius: 50px 20px 50px 20px;
                    margin-left: 35%;
                    margin-right: 35%;
                    padding: 20px;
                     -webkit-text-stroke: 1px aqua;
                }
                
                .pirata {
                      font-family: "Pirata One", system-ui;
                      font-weight: 400;
                      font-style: normal;
                      letter-spacing: 3px;
                }
                
                 #img1:hover {
                       transform: rotate(180deg);
                    }
                    
                    #img1 {
                         box-shadow: 0 4px 20px blue;
                    }
                    
            