body {
    padding: 0px;
    margin: 0px;
    background-color: rgb(245, 177, 85);
    font-family: Bevan;
    color: rgb(255, 217, 167);

}

h1 {
    font-size: 3em;
    text-align: center;
}


#logga {
    width: 240px;
    height: 160px;
    position: absolute;
    top: -10px;
}


#navbar {
    display: flex;
    justify-content: space-around;
}

.nav-button {

    background-color: rgb(179, 112, 21);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 2px 3px rgb(223, 148, 48);
    transition: rotate 0.15s;
    height: 30px;
    width: auto;

}

.nav-button:hover {
    scale: 1.1;
    cursor: pointer;
    rotate: 5deg;
    background-color: rgb(223, 148, 48);
    box-shadow: 2px 3px rgb(179, 112, 21);

}

.nav-button a {
    color: rgb(255, 217, 167);
    text-decoration: none;
}


#produkt-grid {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    grid-template-rows: 400px 400px 400px 400px 400px;
    gap: 40px;
    justify-content: center;
}

.produkt-box {
    background-color: rgb(179, 112, 21);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 10px 10px rgb(223, 148, 48);
    transition: scale 0.5s, opacity 0.2s;
    text-align: center;

}

.produkt-box:hover {
    scale: 1.1;

}

.produkt-bild {

    width: 250px;
    height: 250px;

}

.produkt-bild img {
    width: 250px;
    height: 250px;
    border-radius: 12px;

}

.produkt-knapp {
    background-color: rgb(223, 148, 48);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 2px 3px rgb(245, 177, 85);
    height: 30px;
    width: auto;
    margin-bottom: 10px;

}

.produkt-knapp a {
    color: rgb(255, 217, 167);
    text-decoration: none;
    font-family: Bevan;
}

.produkt-knapp:hover {
    scale: 1.1;
    cursor: pointer;
    background-color: rgb(245, 177, 85);
    box-shadow: 2px 3px rgb(223, 148, 48);

}




.footer-container {
    width: 100%;
    height: 100px;
    display: flex;
    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;
}

/*Mobil*/

@media (max-width: 760px) {
    #produkt-grid {
        display: grid;
        grid-template-columns: 300px;
        grid-template-rows: 400px 400px 400px 400px 400px;
        gap: 40px;
        justify-content: center;
    }


    #navbar {
        display: flex;
        justify-content: space-around;


        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-content: space-between;
        margin-top: 10px;
        align-items: center;
        gap: 1em;
    }



    #logga {
        width: 240px;
        scale: 0.75;
        position: absolute;
        top: -45px;
        left: 55px;
    }


    .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;

    }


}