* {
    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;
}

.overskrift{
    display: flex;
    justify-content: center;
    font-size: 40px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.container{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.name{
    width: 400px;
    height: 30px;
    border: solid black;
    grid-area: name;
}

.email{
    width: 400px;
    height: 40px;
    border: solid black;
    grid-area: email;
}

.subject{
    width: 400px;
    height: 40px;
    border: solid black;
    grid-area: subject;
}

.message{
    border: solid black;
    width: 400px;
    height: 200px;
    grid-area: message;
}

.send{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.send button{
    width: 60px;
    height: auto;
}

.footer{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 75px;
    background-color: #DACDBF;
    display: grid;
    grid-template-areas: 
    "myname contact symbols";
    justify-content: center;
    justify-content:space-between;
    align-items: center;
    font-size: larger;
    background: linear-gradient(to top, #DACDBF 60px, #F4EDEA);
}

.myname{
    grid-area: myname;
}

.facebook img{
    width: 50px;
    height: auto;
    grid-area: symbols;
}

.instagram img{
    padding-top: 5px;
    width: 50px;
    height: auto;
    grid-area: symbols;
}

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


@media (max-width: 768px){

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

    .logo{
        margin-right: 0;
    }

    .kontakt{
        font-size: 20px;
    }

    .overskrift{
        font-size: 32px;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .container{
        margin-left: 20px;
        margin-right: 20px;
    }

    .name, .email, .subject, .message{
        width: 100%;
        max-width: 350px;
    }

    .message{
        height: 180px;
    }

    .send button{
        width: 80px;
        height: 35px;
    }

    .footer{
        position: relative;

        height: auto;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 10px;

        padding: 20px 0;
    }

    .facebook img, .instagram img{
        width: 40px;
    }

}