body {
    color:#666666;
    background-attachment: fixed;
    font-family:'arial';  
    margin: 0px; 
}

#wrapper {
    display:grid;
    grid-auto-rows:minmax(0px,auto);
    grid-template-columns:minmax(0px,auto);
    grid-template-columns: minmax(0px,1fr) repeat(6,minmax(0,175px)) minmax(0px,1fr);

}

header {
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    grid-row:1/2; grid-column: 2/-2;
    width: auto;
}
h1{
    line-height: 200%;
    text-transform: uppercase;
    font-size: 50px;
    height: 70px;
    padding-left: 0.5rem;
    margin:0;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
}
nav{
    font-weight: bold;
    background-color: #Deb887;
    grid-row: 2/3; grid-column: 2/-2;
    width: auto;
    height:50px;
}
h2{
    text-transform: lowercase;
    color: #666666;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    width: auto;
}
main{
    background-color: #ffff;
    padding-left:2em;
    padding-right:2em;
    grid-row: 4/5; grid-column: 2/-2;
    width: auto;
    text-align: center;
    font-size: 20px;
    background-color: #fff;
}
    
h3 {
    font-size: 50px;
    text-decoration:none;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#text {
    text-align: center;
    color: #000;
    font-size: 16px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
#homepagestyle {
    font-size: 18px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#quotes {
    font-style: italic;
}


#steve {
    height:300px;
    background-image:url("steve.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3/4; grid-column: 1/-1; 
}
#selfiec {
    background-image: url("selfiec.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    grid-row: 2/4; grid-column: 2/4;
    height: 700px;
    width: 400px;
    float: left;
}

nav a{
    color: #FFFFFF;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
    color: #fff;
}
nav ul {
    list-style-type: none;
    margin: 0px;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding:0px;
    display:flex;
    flex-flow:row nowrap;
}
nav {
    position: sticky;
}

header a{
    color:#ffffff;
    text-decoration: none;
}

nav ul li { 
    width:100%;
    font-size: 15px;
    text-align: center; 
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media only screen and (max-width: 992px) {
    #wrapper {
        display: grid;
        grid-template-rows: minmax(0px,auto);
        grid-template-columns: repeat(4,minmax(0,1fr)) minmax(0px,768px) repeat (4,minmax(0,1fr));
    }
    #steve {
        background-image: url(steve.jpg);
        background-size: cover;
        height: 200px;
    }
}


@media only screen and (max-width:768px){
    #wrapper{
        display: grid;
        grid-template-rows: minmax(0px, auto);
        grid-template-columns: repeat(4, minmax(auto, 1fr)) minmax(0px, 100%) repeat(4, minmax(auto, 1fr));
    }
    #steve {
        background-image: url(steve.jpg);
        background-size: cover;
        height: 200px;
    }
}

.gallery {
    margin: 10px 50px;
}
.gallery img{
    transition: 1s;
    padding: 15px;
}
.gallery img:hover {
    filter: grayscale(100%);
    transform: scale(1.1);
}
.contact-box {
    margin:0;
    padding:0;
}

.contact-box{
    width: 500px;
    background-color:#fff;
    box-shadow: 0 0 20px 0 #999;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

form {
    margin: 35px;
}

.input-field {
    width: 400px;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #000;
    border-radius: 14px;
    outline: none;
}

.textarea-field {
    height: 150px;
    padding-top: 10px;
}

.btn {
    border-radius: 20px;
    color: #fff;
    margin-top: 18px;
    padding: 10px;
    background-color: #666666;
    font-size: 12px;
    border: none;
    cursor:pointer;

}

.btn:hover{
    background-color:#424242;
}
h4 {
    color: #666666;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 35px;
    padding-top: 0px;

}
h6 {
    text-decoration: underline;
}
h8{
    font-size: 45px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

footer{
    font-size: 15px;
    font-style: italic;
    text-align: center ;
    background-color: #ffffff;
    grid-row: 5/6; grid-column: 2/-2;
}

#contactfooter {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: bold;
    color: #000;
}
#kody {
    height:300px;
    background-image:url("jefferson.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3/4; grid-column: 1/-1; 
}
.weeklyblogimg{
    margin: 10px 50px;
}
.weeklyblogimg img:hover {
    filter: grayscale(100%);
    transform: scale(1.1);
}
#blogtext {
    text-align: center;
    color: #000;
    font-size: 16px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}





