*{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);
}

body {
    background-image: #c2c2c2;
    background-attachment: fixed;
    margin:0px;
}

form {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 200px 1fr;
    grid-gap: 0.75rem;
    width: 100%
}

#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;
    width: 100%;
}

#greybar {
    background-color: #ffffff6d;
    grid-area: 2 / 1 / 3 / -1;
}



nav {
    top:0;
    padding: 0;
    background-color: #ffffff;
    grid-area: 4 / 1 / 3 / -1;
    font-weight: bold;
    text-align: center;
    position: sticky;
}

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;
    font-size: 22pt;
}


#sidehero {
    background: #29df5c;
    background-image: url(images/origami2.jpg);
    border: 1rem solid #29df5c;
    float: left;
    margin: auto;
    height: 711px;
    width: 290px;
}

.centered {
    position:relative;
    top:auto;
    left: 50%;
    transform: translate(-50%);
    color: #29df5c;
    text-shadow: 2px 2px #202020;
    font-size: 48pt;
    background-color: #ffffff6d;
}

@media only screen and (max-width: 992px) {
    body {
        grid-template-columns: 786px;
    }

    nav {
        position:relative;
        list-style-type:none;
        top:0;
        background-color: #ffffff;
        grid-row: 2 / 3;
        grid-column: 1 / 5;
        font-weight: bold;
        font-family: "Lucida Handwriting", "Monaco", serif;
        text-decoration: none;
    }

    nav ul {
        list-style-type:none;
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        display: flex;
        flex-flow: column nowrap; 
    }


    #homehero {
        height: auto;
        background-image: url(images/origami1.jpg);
        grid-row: 2 / 3;
        grid-column: 5 / 8;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

}

@media only screen and (max-width: 768px) {
    body {
        grid-template-columns: 100%;
        
    }
    #sidehero {
        background: #29df5c;
        background-image: url(images/origami2.jpg);
        background-repeat: none;
        border: 1rem solid #29df5c;
        float: none;
        margin: auto;
        height: 711px;
        width: auto;
        display: none;
    }



    nav {
        position:relative;
        list-style-type:none;
        top:0;
        background-color: #ffffff;
        grid-row: 2 / 3;
        grid-column: 1 / 5;
        font-weight: bold;
        font-family: "Lucida Handwriting", "Monaco", serif;
        text-decoration: none;
    }

    nav ul {
        list-style-type:none;
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        display: flex;
        flex-flow: column nowrap; 
    }

}  