ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background-color: rgb(0, 0, 0);
    padding: 5px;
}

nav ul li {
    padding: 10px;
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

ul {
    list-style: none;
    padding-left: 0;
}


a:hover {
    color: rgb(145, 0, 0);
}

header {
    h1 {
        text-align: center;
        margin: 20px;
    }

    background-color: rgb(145, 0, 0);
    padding: 10px 0;
    margin-bottom: 20px;
}

#venstre {
    align-items: left;
    justify-content: left;
    text-align: left;
    margin-left: 0px;
}

#hojre {
    align-items: right;
    justify-content: right;
    text-align: right;
    margin-left: 20px;
}

#flexcontainer {
    display: flex;
    background-color: rgb(255, 255, 255);
    font-size: 18px;

}

#tekst {
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
    color: rgb(0, 0, 0);
}

#billedekyllingburger {
    width: 35%;
    margin: 0 auto;
    margin-top: 25px;
}

#undertekst {
    width: 50%;
    color: rgb(0, 0, 0);
    margin-left: left;
    font-size: 18px;
    text-align: center;
}


#flexcontainer {
    display: flex;
    justify-content: space-between;
    text-align: center;
}



main {
    flex: 1;
    margin: 0 20px;
}


body {
    margin: 0;
    padding: 0;
}


#flexcontainer,
.flexrow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 200px;
    grid-template-columns: 1fr 1fr;

}

#venstre,
#hojre {
    flex: 0 0 120px;
    width: 120px;
    min-width: 90px;
    max-width: 150px;
    box-sizing: border-box;
}

main {
    flex: 1 1 auto;
    min-width: 0;
}

#venstre img,
#hojre img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.header-content {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.tglogo {
    max-width: 30%;
    width: 60px;
    height: auto;

}

button {
    background-color: rgb(145, 0, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: rgb(100, 0, 0);
}

#allergier {
    display: flex;
    justify-content: center;
    align-items: center;
}

#tekstboks {
    width: 80%;
}

p {
    text-align: center;
}


.overskrift {
    font-weight: bold;
}

@media screen and (max-width: 800px) {

    #flexcontainer,
    .flexrow {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #venstre,
    #hojre {
        display: none;
    }

    #billedekyllingburger {
        display: none;
    }

    #tekst,
    #undertekst {
        width: 100%;
        text-align: left;
        margin: 0;
    }

    p {
        text-align: left;
        font-size: 18px;
    }

    h2,
    h4 {
        text-align: left;
    }

    main {
        margin: 0 15px;
    }
}