/* Reset */
body {
    margin: 0;
}

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

/* Theme */
body {
    height: 100vh;
    background-image: url(startseite_hintergrund.png);
    background-size: cover;
    background-position: center;
    display: flex;
}

nav {
    margin: auto;
    /* Breite und Höhe des Vordergrundes in vmin angeben */
    width: 80vmin;
    height: 80vmin;
}

.navigation-level-1 {
    width: 100%;
    height: 100%;
    background-image: url(startseite_vordergrund.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.navigation-item {
    display: block;
    position: absolute;
    /* x-Position, Breite und Höhe in % angeben (Nachkommastellen erlaubt) */
    left: 20%;
    width: 80%;
    height: 20%;
}

.navigation-item.hemden {
    /* y-Position in % angeben (Nachkommastellen erlaubt) */
    top: 25%;
}

.navigation-item.schnittmuster {
    /* y-Position in % angeben (Nachkommastellen erlaubt) */
    top: 50%;
}

.navigation-item.privat {
    /* y-Position in % angeben (Nachkommastellen erlaubt) */
    top: 75%;
}

.navigation-item:hover,
.navigation-item:focus-within {
    /* Link-Hintergrund aufhellen */
    background: hsla(0, 0%, 100%, 0.2);
}

a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
