body{
    background-color: lightblue;
    background-image: url("../graphics/star of life.png");
    background-repeat: no-repeat; 
    background-position-y: 120px;
    background-position-x: center;
    background-size: 500px;
    background-blend-mode: soft-light;
}

.links-hamburger {
    display: none;
}

.links-hamburg {
    display: none;
}

.links-wrapper{
    min-height: 700px;
    width: 100%;
    margin-left: 0;
    min-width: max-content;
    z-index: 0;
}

.links-header {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    padding: 10px 10px 10px 0;
    background-color: blue;
    max-height: 10px;
    display: flex;
    flex-direction: row;
    justify-content:  baseline;
    z-index: 99;
}

.links-navigation {
    display: flex;
    flex-direction: row;
    min-width: max-content;
    align-items: center;
}

.links-navigation a {
    color: white;
    background-color: blue;
}

.links-navigation a:hover {
    background-color: gold;
    color: black;
}

.links-navigation ul  {
    display: block;
    position: absolute;
    padding-left: 20px;
    list-style: none;
    min-width: max-content;

}

.links-navigation ul li {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    width: 200px;
}

.links-navigation ul li ul li {
    position: relative;
    display: none;


}

.links-navigation ul li:hover ul li {
    display: block;
    margin-left: -35px;
    text-align: left;
    text-indent: 1em;
    width: max-content;
    top: 0;
}

.links-navigation ul li:hover ul li a {
    color: blue;
    background-color: lightblue;
}

.links-navigation ul li:hover ul li a:hover {
    color: blue;
    background-color: gold;
}

           
.links-kids-smokey {
    width: 15%;
    height: 30px;
    line-height: 30px;
    margin-bottom: -5px;
}

.links-kids-fire {
    height: 40px;
    line-height: 30px;
    margin-bottom: -15px;
}

.links-kids-safe {
    width: 40%;
    height: 30px;
    padding-right: 20px;
    margin-top: 10px;
}

@media screen and (max-width: 700px) {
    .links-wrapper{
        display: none;
    }

    .links-hamburg {
        display: block;
    }

    .links-hamburger {
        display: block;
        margin: 50px auto 0 -2px;
        min-height: 30px;
        width: 100%;
        position: fixed;
        top: 0;
        min-width: 100%;
        z-index: 100;
        background: lightblue;
        color:blue;
        text-decoration: none;
        font-family: monospace;
        font-weight: bold;
        font-size: 20px;
    }


}