* {
    padding:0;
    margin:0;
}

body{
background-color: #F4EDEA;
}


hr{
    height: 2px;
    background-color: black;
    border: none;
}

ul {
    color: black;
    list-style-type: none;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #DACDBF;
    font-size: x-large;
    padding-right: 20px;
    height: 75px;
    background: linear-gradient(to bottom, #DACDBF 60px, #F4EDEA);
}
ul li a {
    color: black;
    text-decoration: none;
    margin-left: auto;
}

.logo-item{
    margin-right: auto;
}

.logo{
    width: 100px;
    display: block;
}

.kontakt{
        background-color: #F4EDEA;
        padding: 5px 5px;
        border: solid black 1px;
        width: 100px;
        height: 50px;
}

.container{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-right: 20px;
    width: 100%;
    height: 400px;

}

.text{
    display: flex;
    flex-direction: column;
    margin-left: 235px;
}

.overskrift{
    font-size: 40px;
    font-weight: bold;
}

.underoverskrift{
    font-size: 30px;
    font-weight: normal;
}

.indhold{
    font-size: 20px;
    font-weight: normal;
    margin-top: 20px;
}

.picture{
    position: inherit;
    width: auto;
    height: 350px;
    margin-right: 147px;
    margin-bottom: 20px;
}

.projekter{
    margin-bottom: 50px;
    margin-top: 50px;
    display: grid;
    grid-template-areas: 
    "projekt1 projekt2 projekt3"
    "projekt4 projekt5 projekt6";
    justify-content: center;
    gap: 100px;
}



.projekter button{
    border-radius: 20px;
    border: none;
    box-shadow: 3px 3px 5px black;
    background-color: #F4EDEA;
    width: 330px;
    height: 256px;
}

.projekter button:hover{
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}


.projekt1 img, .projekt2 video, .projekt3 img, .projekt4 img, .projekt5 img, .projekt6 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer{
    position: relative;
    bottom: 0px;
    width: 100%;
    height: 75px;
    background-color: #DACDBF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
    font-size: larger;
    background: linear-gradient(to top, #DACDBF 60px, #F4EDEA);
}

.myname{
    padding-left: 20px;
}

.facebook img{
    width: 50px;
    height: auto;
}
.instagram img{
    padding-top: 5px;
    width: 50px;
    height: auto;
    padding-right: 20px;
}

.contact{
    color: black;
    text-decoration: none;
}

@media (max-width: 768px){

    ul{
        justify-content: center;
        gap: 5px;
        height: auto;
    }

    .logo{
        margin-right: 0;
    }

    .kontakt{
        font-size: 20px;
    }

    .container{
        flex-direction: column;
        align-items: center;
        height: auto;
        margin-right: 0;
    }

    .text{
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

    .overskrift{
        font-size: 32px;
    }

    .underoverskrift{
        font-size: 24px;
    }

    .indhold{
        font-size: 18px;
    }

    .picture{
        width: 80%;
        height: auto;
        margin-right: 0;
    }

    .projekter{
        grid-template-areas:
        "projekt1"
        "projekt2"
        "projekt3"
        "projekt4"
        "projekt5"
        "projekt6";

        gap: 40px;
    }

    

    .projekter div{
        width: 280px;
        height: 300px;

    }

    .projekt1 img, .projekt2 video, .projekt3 img, .projekt4 img, .projekt5 img, .projekt6 img{
    width: 80%;
    height: 100%;
    object-fit: contain;
}

    .footer{
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        height: auto;
        padding: 20px 0;
    }

    .myname{
        padding-left: 0;
    }

    .instagram img{
        padding-right: 0;
    }

}