* {
    margin: 0;
    padding: 0;
}
html {
    box-sizing: border-box;
}
body {
    max-width: 1620px;
    margin: 0 auto;
/*
    max-height: 100vh;
    max-width: 90%;
    margin: 0 auto;
    background: #ccc;
    display: flex;
    justify-content: center;
*/
}
header {
    margin-top: 50px;
    margin-bottom: 50px;
}
header h1 {
    text-align: center;
}
nav {
    text-align: center;
    margin-bottom: 30px;
}
nav ul li {
    margin-top: 20px;
}
.navButtons {
    display: grid;
    grid-template-columns: repeat(autofit, minmax(80px, 1fr));
    grid-row-gap: 20px;
    grid-column-gap: 10px;
    padding: 10px;
    background-color: white;
    margin: 10px;
    text-align: center;
}
.navButtons h2 {
    font-size:  1rem    
}
.navitem {
    width: 50%;
    height:  30px;
    text-align: center;
    border-color: black;
    border-radius: 10%;
    background-color: #E8562A;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(104,104,104,0.8);
}
.photoGallery {
    margin-top: 20px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 30px;
}
.photoGallery img {
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(104,104,104,0.8);
}
.photoGallery h3 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 1.5rem;
}
.return {
    margin-left: 40px
}
footer {
    margin-bottom: 30px;
}
footer h5 {
    text-align: center;
    margin-top: 20px;
}