* {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}
*::before, *::after {
    box-sizing: inherit;
}
html {
    background-color: azure;
    font-size: 100%;
}
body {
    max-width: 1440px;
    background-color: darkseagreen;
    margin: 0 auto;
}
.goTop {
    margin: 5px 0 40px 40px;
    font-size: 1.5rem;
}
.wrapper {
    width: 95%;
    background-color: aliceblue;
    margin: 0 auto;
}
.hero {
    width: 95%;
}
.hero-image {
    width: 100%;
    margin: 20px 10px 20px 10px;
    border-radius: 10px;
}
.narrative h2 {
    text-align: center;
    margin-bottom: 5px;
}
.narrative p {
    font-size: .8rem;
    text-align: center;
}
hr {
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
}
.gardens p {
    font-size: 1.2rem;
    text-align: center;
}
nav li {
    text-align: center;
}
.gallery {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
}
 .image img {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(104,104,104,0.8);
}
.masks p {
    font-size: .8rem;
    text-align: center;
}
footer {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: .8rem;
}
/* For larger screens and zoom effects */
@media only screen and (min-width: 550px) {
    .image {
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-area: ;
        grid-gap: 30px;
        margin-bottom: 30px;
    
    }
    .masks p {
        font-size: 1.2rem;
        text-align: center;
    }
    footer p {
        font-size: 1.2rem;
    }
}
