html, body{
margin:0;
padding: 0;
height: 100%;
background-color: white;
font-family: "Bitter", serif;
}

/* grid set up */
.wrapper {

    min-height: 100%;

    display: grid;
    grid-template-columns: 200px auto 300px;

    /* make main div fill available screen space*/
    grid-template-rows: auto auto 1fr auto;
    grid-template-areas:
    "logo banner banner"
    "navigation navigation quick-search"
    "main main main"
    "footer footer footer"
    ;

    row-gap: 4px;
}
.logo {
    grid-area:logo;
}
.banner {
    grid-area:banner;
}
.navigation {
    grid-area:navigation;
    padding-top: 10px;
    display: flex;
    gap: 8px;
}
.quick-search {
    grid-area:quick-search;
}
.main {
    grid-area: main;
    background-color: #E1E1E1;
}
.footer {
    grid-area: footer;
    font-family: "Raleway", "sans-serif";
    display: flex;
    justify-content: space-between;
}
.all {
    padding: 10px;
}
.logo, .banner, .footer {
    background-color: #191919;
    color: #E1E1E1;
}
h1, h2 {
    font-family:"Raleway", sans-serif;;
}
.right {
    float: right;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 10px;
    transform: rotate(10deg);
}
/* Links in Pages */
a {
    color: #4d771E;
    font-weight: bold;
    text-decoration: none;
}
a:visited {color:#444444}
a:hover {color:#2D5C91}
/* footer link */
.footer a .footer a:visited {
    text-decoration: none;
    color: #A8C18B
    ;
}

.footer a:hover{
    color:#8cbdf4;
}