*, html, body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

:root {
    --hedenGrön: #00672F;
}

.grid-item {
    height: max-content;
    width: 100%;
}


#navbar {
    --paddingSides: 10vw;
    position: fixed;
    top: 0vw;
    background-color: transparent;
    height: 2vw;
    width: calc(100% - calc(var(--paddingSides)*2));
    margin: 0;
    padding: 0;
    padding: 1vw var(--paddingSides);
    color: white;
    z-index: 200;
    transition: all 0.15s ease-in-out;
}

#navbar-grid {
    display: grid;
    grid-template-columns: 20vw 1fr max-content 12vw 12vw max-content;
}

.navbar-text {
    font-size: 1.6vw;
    width: 10vw;
    font-weight: 600;
    text-align: center;
    overflow: visible;
    cursor: pointer;
}

#navbar-logo {
    margin-top: -0.5vw;
    width: 16.5vw;
    height: 140%;
    background: url('../images/LoggaTextVit.svg') center center no-repeat;
    background-size: contain;
    cursor: pointer;
}

a:link {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
    width: min-content;
}
a:link:hover {  
    text-decoration: inherit;
}

a:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}

#footer-container {
    background-color: rgb(26, 26, 26);
    width: 100%;
    height: 14vw;
    margin: 0;
    margin-top: 20vw;
    padding-top: 4vw;
}

#footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 10vw;
}

.footer-item {
    align-items: center;
    text-align: center;
}

.footer-title {
    color: white;
    font-size: 1.3vw;
    line-height: 3vw;
}
.footer-text {
    color: white;
    font-size: 1.2vw;
    line-height: 1.8vw;
}
.footer-link:hover {
    cursor: pointer;
    text-decoration: underline;
}