body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(14, 83, 12);
}

nav ul li {
    float: left;
}

nav ul li {
    display: block;
    text-align: center;
    padding: 15px 35px;
    color: white;
}

nav li {
    height: 100%;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    margin-top: 18px;
    display: block;
    text-align: center;
    color: rgb(255, 255, 255);
    transition: color 0.3s ease-in;
}

nav ul li a:hover {
    color: rgb(189, 189, 189);

}

.loggaimg {
    height: 55px;
}


.grid-footer {
    display: grid;
    grid-template-columns: auto auto auto;
    width: 100%;
    height: auto;
    margin:auto;
    place-items: center;
    background-color: rgb(14, 83, 12);
}

.footerlist {
    grid-area: 1 / 1 / span 1 / span 1;
    margin-bottom: auto;
}

footer h3 {
    color: white;
}

footer ul {
    list-style-type: none;
}

footer ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: color 0.3s ease-in;
}

footer ul li a:hover {
    color: rgb(189, 189, 189);
}

.footername {
    grid-area: 2 / 2 / span 1 / span 1;
    font-size: small;
    border-top: 1px white solid;
}

footer p {
    color: white;
}

.footer_kontakt {
    grid-area: 1 / 2 / span 1 / span 1;
}

#instagram_logo {
    height: 40px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.footer_logo {
    grid-area: 1 / 3 / span 1 / span 1;
    margin-bottom: auto;
}

#logga:hover {
    cursor: pointer;
}

@media (max-width: 775px) {
    nav ul {
        display: flex;
        flex-direction: column;
    }
    
    .grid-footer {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    #instagram_logo {
        margin: auto;
    }
}