/**     toppmeny **/


#toppmeny{
    grid-area: tm;
    display: flex;
    justify-content: space-evenly;
    font-size: larger;
    background-color: #F7F7F7;
    width: 100%;
    font-family: "Raleway";

}
.bokser{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    font-weight: bold;
    font-family: "Raleway";
    height: 70px;
    font-size: medium;
}
.bokser a{
    position: relative;
    align-self: center;
    color: black;
    text-decoration: none;
}

.bokser a:hover{
    color: black;
}

.bokser a::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0.1em;
    bottom: 0;
    left: 0;
    background-color: black;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bokser a:hover::before{
    transform: scaleX(1);
}

#logo{
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
}

#logoimg{
    position: relative;
    width: 80px;
    top: 2.5px;
}

#logoimg img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.knapp{
    display: flex;
    width: 100%;
    justify-content: end;
}

.knapp a{
    position: relative;
    align-self: center;
    
   
}

.knapp a:hover{
    position: relative;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
    left: -38px;
    border: 2px solid white;
    background-color: #F6C90E;
}