.grid-container {
    display: grid;
    grid-template-columns: 200px auto 200px;
    grid-template-rows: 60px auto 50px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 1px black solid;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.grid-container > * {
    border: black solid 1px;
    padding-left: 5%;
}

.header {
    grid-column: 1 / span 2;
    background-color: salmon;
    color: white;
}

.nav-section {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: lime;
}

.nav-div {
    background-color: white;
    border: 1px black solid;
    margin-left: auto;
    margin-right: 5%;
    margin-top: 5%;
    text-align: left;
}

.nav-content {
    margin-left: 5%;
}

ul {
    list-style-type: none;
    margin-left: -10%;
}

.frukt-info {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: left;
}

.reklam {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background-color: yellow;
    height: 110%;
}

.footer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
    background-color: gray;
}

img {
    border: black solid 1px;
    width: 100px;
}

.reklam > div {
    border: 1.5px red solid;
    background-color: white;
    width: 70%;
    height: 17%;
    margin-left: 10%;
    margin-bottom: 10px;
}

.orangebg {
    background-color: orangered;
}

/* =========================
   RESPONSIV DESIGN (MOBIL)
   Samma beteende som kompisen
   ========================= */

@media (max-width: 600px) {

    .reklam {
        display: none;
    }

    .grid-container {
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .header {
        grid-column: 1 / -1;
    }

    .nav-section {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .frukt-info {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .footer {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}
