* {
    box-sizing: border-box;
}
body {
    background-color: #d6c805;
}
main {
    display: flex;
}
nav {
    font-weight: bold;
    font-family: Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    position: sticky;
    top: 0px;
    grid-row: 2 / 3;
    grid-column: 1 / -1;
}
nav ul  {
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;   
    padding: 0 0 2px 0;
}
nav ul li {
    width: 100%;
    text-decoration: none;

}
nav ul li:hover {
    background-color: #ca0505;
}
h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
p {
    font-family: Georgia, 'Times New Roman', Times, serif;

}
h3 {
    color: #1d0bc2;
}
footer {
    grid-row: 5 / 6 ;
    grid-column: 2 / -2;
}
#wrapper {
    display: grid;
    background-color: #ffffff;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 960px)) minmax(0px, 1fr);
}
#lightgreybar {
    background-color: dimgray;
    grid-column: 1 / -1;
}
.clear {
    clear: both;
}
section {
    background-color: #a80dbdc4 ;
    float: left;
    width: 33%;
    padding-right: 1em; 
}
img {
    float: left;
    grid-row: 1 / 2;
}
form {
    display: grid;
    grid-template-rows: 1 / 3;
    grid-template-columns: 200px 1fr;
    gap: .75rem;
    width: 100%;
}
.row {
    float: left;
    grid-row: 1 / 2;
    max-width: 100%;
    height: auto;
    padding-right: 2px;
}
.column {
    max-width: 100%;
    height: auto;
    float:  none;
}
@media screen and (max-width: 992px) {
    #wrapper {
        grid-column: 1 / 3;
    }
}
@media screen and (max-width: 768px) {
    #wrapper {
        grid-column: 1 / 3;
    }
}