:root {
    --blue: #002868;
    --flame-red: #a7293f;
    --general-lee: #F66600;
    --header-height: 70px;
  }

body {
    display: grid;
    grid-template-columns: auto 992px auto;
    grid-template-rows: auto auto auto auto;
}

header {
    grid-area: 1 / 2 / 1 / -2;
    display: grid;
    align-content: center;
    background-color: var(--general-lee);
    height: var(--header-height);
    align-content: end;
}

#logo {
    height: calc(.75 * var(--header-height));
}

#Filler {
    grid-area: 1 / 1 / 3 / 1;
    background-color: var(--general-lee);
}

#Filler2 {
    grid-area: 1 / 3 / 3 / 3;
    background-color: var(--general-lee);
}

nav {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    vertical-align: middle;
    grid-template-columns: 20% 20% 20% 20% 20%;
    height: 80px;
    background-color: var(--general-lee);
    padding: 15px 0px;
}

nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--general-lee);
    background-color: var(--blue);
    height: 60px;
    text-decoration: none;
    margin: 5px;
    border-radius: 5px;
    border-style: ridge;
    border-color: var(--flame-red);
    border-width: 3px;
}
nav a:hover {
    text-decoration: none;
    /*not really used yet*/
}

nav a:active{
    border-color: #F66600;
    border-style: solid;
    font-size: 95%;
}

#Banner {
    background-image: url("car_in_garage.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    grid-row: 3;
    grid-column: 1 / -1;
}

main {
    grid-area: 4 / 2 / 4 / 2;
}