@font-face {
    font-family: 'MyFont';
    src: url('../fonts/super_smash_4_1_by_pokemon_diamond-d7zxu6d.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body{
    margin: auto;
    padding: 0px;
    height: 100%;
    background-color: #202020;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif
}

/* Grid setup */
.wrapper {

    min-height: 100%;

    display: grid;
    grid-template-columns: 200px auto 300px;
    grid-template-rows: auto auto 1fr auto;
    grid-template-areas: 
    "logo banner banner"
    "navigation navigation qsearch"
    "main main main"
    "footer footer footer"
    ;
    grid-gap: 4px;
}

.logo{
    grid-area: logo;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #000000;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.banner{
    grid-area: banner;
    background-image: url("../images/bannerlogo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 120px;
    
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.banner h1 {
    font-family: 'MyFont', sans-serif;
    font-size: 52px;
    color: white;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -2px 0 0 #000,
        2px 0 0 #000,
        0 -2px 0 #000,
        0 2px 0 #000,
        4px 4px 8px rgba(0,0,0,0.9);
    margin: 0;
    font-weight: normal;
}

.navigation{
    grid-area: navigation;
    background: linear-gradient(to bottom, 
        #4A90E2 0%, 
        #FFD700 15%, 
        #CC0000 15%, 
        #CC0000 45%, 
        #8B0000 45%, 
        #8B0000 75%, 
        #000000 75%, 
        #000000 100%);
    padding: 5px 10px !important;
    display: flex;
    align-items: center;
}

.qsearch{
    grid-area: qsearch;
    background-color: #00ffe5;
}

.main{
    grid-area: main;
    background-color: #e5faff;
}

.footer{
    grid-area: footer;
    background-color: #A0A0A0;
}

.all{
    padding: 10px;
}