*, *:before, *:after{
    box-sizing: border-box;
}

header{
    display: flex;
    justify-content: center;
}

p{
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
}

section{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}

img{
display: block;
margin: 8px;
border: 2px solid salmon;
box-shadow: 3px 3px 8px rgba(0,0,0, .93);
border-radius: 8px;
max-width: 60%;
height: auto;
filter: grayscale(1);



}

img:hover{
filter: grayscale(0);
transform: scale(1.2);
z-index: 10;
transition: .5s transform ease-in-out;

}


hr{
border-top: 7px dotted;
border-bottom: 7px;
color:rgb(255, 255, 255);
background-color:pink;
}

nav{
    display: flex;
    justify-content: center;
    padding: 10px;
}

.GO {
color: white;
text-decoration: none;
background-color: pink;
display: inline-block;
width: 200px;
text-align: center;
border-left: 1px solid white;
border-top: 1px solid white;
border-right: 1px solid white;
margin: 5px;
padding-top: 5px;
border-radius: 0px 25px 0px 25px;s

}

.GO:hover {
background-color:rgb(119, 163, 253);
}