body {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

img {
    border: 1px solid black;
    margin-bottom: 2%;
}

.img_banan {
    width: 40%;
}

.img_apelsin {
    width: 40%;
}

.img_apple {
    width: 40%;
}

.container {
    width: 50%;
    display: grid;
    grid-template-areas:
        "header header reklam"
        "menu main reklam"
        "footer footer footer";
    grid-template-columns: auto auto auto;
    border: solid 1px black;
}

.header {
    grid-area: header;
    text-align: center;
    background-color: salmon;
    border: 1px solid black;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

article {
    padding-left: 3%;
    grid-area: main;
    border: 1px solid black;
}

.menu {
    grid-area: menu;
    background-color: lime;
    justify-content: center;
    align-items: center;
    display: flex;
    border: solid black 1px;
}

.reklam {
    grid-area: reklam;
    background-color: yellow;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2%;
    border: 1px solid black;

}

.reklam_priser {
    padding: 10px 20px 10px 20px;
    background-color: white;
    border: red 1px solid;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    h3 {
    margin-top: 0;
    margin-bottom: 0;
}
    h4 {
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0;
}
}

.footer {
    grid-area: footer;
    background-color: gray;
    text-align: center;
    border: 1px solid black;
}

.footer span {
    font-size: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

#date {
    font-size: 20px;
    font-weight: normal;
}   

nav {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    margin-top: 20px;
    border: 1px solid black;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
    width: 200px;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 20px;
    a{
        text-indent: 20%;
        text-decoration: none;
        display: flex;
        align-items: center;
        outline: 1px solid black;
        color: black;
        text-align: center;
        height: 40px;
        width: 80%;
        background-color: darkgray;
    }
    a:hover{
        background-color: greenyellow;
    }
}

#current_tab {
    font-weight: bold;
    background-color: orangered;
}