/* =========================
   ORIGINAL CSS
========================= */

* {
    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{
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-around;
    margin-right: 100px;
    margin-left: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.text{
    margin-top: 100px;
    font-size: 20px;
    line-height: 30px;
    width: 500px;;
}

.picture img{
    width: 400px;
}

.experience{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: larger;
    flex-direction: column;
}

.programs img{
    margin-top: 10px;
    width: 60px;
    height: auto;
}

.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;
    }

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

    .container{
        flex-direction: column;
        align-items: center;

        margin-left: 20px;
        margin-right: 20px;
    }

    .text{
        width: 100%;
        margin-top: 20px;
        text-align: center;
        font-size: 18px;
        line-height: 28px;
    }

    .picture img{
        width: 100%;
        max-width: 350px;
        height: auto;
        margin-top: 20px;
    }

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

    .programs img{
        width: 50px;
    }

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

    .myname{
        padding-left: 0;
    }

    .instagram img{
        padding-right: 0;
    }

}