html,
body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

a {
    font-weight: bold;
    color: black;
    text-decoration: none;
}

button {
    cursor: pointer;
    all: unset;
}


.content {
    flex: 1;
}

header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-evenly;
    border-bottom: 1px solid black;
    padding: 5px 40px;
    width: 100%;
    position: fixed;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

footer {
    background-color: grey;
    color: whitesmoke;
    padding: 1rem;
    width: 100%;
}


.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-left {
    padding-left: 10px;
}

.nav-right {
    padding-right: 60px;
}

.nav-left a,
.nav-right a {
    padding: 20px 25px;
    font-weight: bold;
    color: black;
    text-decoration: none;
}

.nav-left a:hover,
.nav-right a:hover {
    text-decoration: underline;
}

#active {
    text-decoration: underline;
}


#logga {
    height: 65px;
}

#varukorg img {
    height: 40px;
}


#menu-btn {
    all: unset;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.3s ease;
    padding-top: 80px;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.side-menu a {
    padding: 15px 30px;
    display: block;
    font-size: 20px;
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

.side-menu a:hover {
    background-color: #f2f2f2;
    padding-left: 40px;
}

#close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    cursor: pointer;
}


#rubrik {
    text-align: center;
    text-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

#mitt {
    text-align: center;
    max-width: 740px;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid grey;
    background-color: whitesmoke;
}

img {
    max-height: 200px;
    border-radius: 15px;
    object-fit: cover;
}


.footer {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

footer a {
    color: white;
    font-weight: bold;
    font-size: large;
}

.bold {
    font-weight: bold;
    font-size: large;
}

#copy {
    text-align: center;
    color: black;
}

#kort {
    width: 75%;
}

.följ {
    font-weight: normal;
    font-size: medium;
}


@media (max-width: 1100px) {
    .hide {
        display: none;
    }

    #menu-btn {
        display: block;
    }

    #mitt {
        max-width: 500px;
    }
}

@media (max-width: 800px) {

    .nav-left a,
    .nav-right a {
        display: none;
    }

    #varukorg {
        display: block;
    }

    #menu-btn {
        display: block;
    }

    .footer {
        gap: 40px;
    }

    #mitt {
        max-width: 350px;
    }
}