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 menu reklam"
        "old_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;
}


.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;
}
.old_menu{
    background-color: lime;
    grid-area: old_menu;
    width: 200px; 
}
.menu {
    grid-area: menu;
    background-color: rgb(225, 225, 225);
    justify-content: flex-start;
    align-items: center;
    display: flex;
    border: solid black 1px;
}

nav {
    justify-content: center;
    display: flex;
    flex-direction: column;
    div{
        justify-content: center;
        display: flex;
        flex-direction: row;
        gap: 20px;
        a{
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            outline: 1px solid black;
            color: black;
            height: 40px;
            width: 80px;
            background-color: darkgray;
        }
        a:hover{
            background-color: greenyellow;
        }
    }
}

#current_tab {
    font-weight: bold;
    background-color: orangered;
}