body {
    font-family: Bevan;
    color: rgb(255, 217, 167);
    background-color: rgb(245, 177, 85);
    padding: 0px;
    margin: 0px;

}

#logga {
    width: 240px;
    height: 160px;
    position: absolute;
    top: -10px;
}

header h1 {
    text-align: center;
    font-size: 3em;
}

ul {
    list-style: none;
    text-align: center;
    background-color: rgb(223, 148, 48);
}




.footer-container {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: end;
    color: rgb(179, 112, 21);



}

.footer-container a {
    text-decoration: none;
    color: rgb(179, 112, 21)
}

.footer-container a:hover {
    text-decoration: underline;

}


/*Mobil*/
@media (max-width: 760px) {

    .footer-container {
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        color: rgb(179, 112, 21);


    }

    .footer-container a {
        text-decoration: none;
        color: rgb(179, 112, 21)
    }

    .footer-container a:hover {
        text-decoration: underline;

    }

    header h1 {
        text-align: center;
        font-size: 2em;
    }



    #logga {
        width: 240px;
        scale: 0.4;
        height: 160px;
        position: absolute;
        top: -30px;
        left: -70px;
    }

}