*{box-sizing: border-box;}

#wrapper {
    display:grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

#homehero {
    height: 300px;
    background-image: url(images/origami1.jpg);
    grid-area: 1 / 1 / 2 / -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


nav {
    position:sticky;
    top:0;
    padding: 0;
    background-color: #ffffff;
    grid-area: 4 / 1 / 3 / -1;
    font-weight: bold;

    text-align: center;
}

nav a {
    color: #202020;
    padding: 1em;
    display:block;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #29df5c;
    text-align: center;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-flow: nowrap;
}

body {
    background-color: #29df5c;
    background-attachment: fixed;
    color:#202020;
    font-family: "Lucida Handwriting", "Monaco", serif;
    margin:0px;
}


#sidehero {
    background: #29df5c;
    background-image: url(images/origami2.jpg);
    border: 1rem solid #29df5c;
    float: left;
    margin: auto;
    height: 711px;
    width: 290px;
}

.centered {
    position:absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%);
    color: #29df5c;
    text-shadow: 2px 2px #202020;
    font-size: 48pt;
}