#wrapper {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: minmax(0px, 1fr) repeat(5, minmax(0px, 200px)) minmax(0px, 1fr);

}

body {
    background-color:#0c7f7f;
    background: linear-gradient(to bottom, #ffffff, #0c7f7f);
    background-repeat: no-repeat;
    background-attachment:fixed;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

header {
    grid-column: 2 / -2;
    grid-row: 1 / 2;
    background-color: #b1cece;
    opacity: .6;
    align-items: center;
    display: flex;
    
}

header h1 {
    color: black;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    font-style: italic;
    text-shadow: 1px 1px black;
}

nav {
    grid-column: 2 / -2;
    grid-row: 2 / 3;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #0c7f7f;
    font-size: 32px;
    
}

nav ul {
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;
}

nav ul li {
    width: 100%;
    background-image: url(brush_stroke.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    font-weight: lighter;
    font-style: italic;
    align-items: center;
}

main {
    display: grid;
    grid-column: 2 /-2;
    grid-row: 4 / 5;
    background-color: #cfd1d1;
    padding-left: 5px;
    padding-right: 5px;
}

footer {
    display: flex;
    grid-column: 2 / -2;
    grid-row: 5 / 6;
    align-items: center;
}

a {
    text-decoration: none;
}

h1 a {
    text-decoration: none;
    color:rgb(107, 107, 98)
}

div{
    height: 1200px;
}

#homehero {
    display:flex;
    grid-column: 2 / -2;
    grid-row: 1 / 4;
    background-image: url(homehero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;   
    z-index: -1;
}

.logo {
    width: auto;
    height: auto;
}

.info {
    display: inline-block;
    text-align: center;
    margin: auto;
}

.slideshow {
    font-style: italic;
    color: red;
    display: block;
    height: 500px;
    width: 500px;
    border: black;
    align-items: center;
    text-align: center;
    background-color: white;
    margin: auto;
}