*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Roboto', sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    background: #36768c;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*auswahl{
    background: #730303;
    width: 96%;
    height: 100px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

auswahl nav{
    height: 96px;
}

auswahl nav img{  
    height: 96px;
} */

a{
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    padding: 8px;
}

a:hover{
    text-decoration: none;
}

.navigation{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: 0.2s;
    display: flex;
    justify-content: center;
}

/* .navigation .navArea{
    position: relative;
    width: 50%;
    height: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
} */

.navigation .navArea ul{
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 10px 10px;
    background: #730303;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0, 0.5);
}

.navigation .navArea ul li{
    list-style: none;
    text-align: center;
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.navigation .navArea ul li:last-child{
    border-right: none;
}

.navigation .navArea ul li::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(128, 16, 14);
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}

.navigation .navArea ul li:nth-child(1)::before{
    background: #905c49;
}

/* .navigation .navArea ul li:hover::before{
    1opacity: 1;
} */

.navigation .navArea ul li a{
    font-size: 1.5em;
    font-weight: 400;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 20px;
    display: block;
}

.navigation .navArea ul li:hover a{
    color: rgba(255, 255, 255, 1.5);

}

.imgArea{
    position: relative;
    width: 100%;
    height: 80%;
    top: 0;
}

.imgArea img{
    position: absolute;
    top: 0px;
    left: 5%;
    width: 90%;
    /* 1height: 100%; */
    padding: 20px auto;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0, 0.5);
}

.navigation .navArea ul li a .icon{
    width: 60px;
    height: 60px;
    text-align: center;
    background: #ccc;
    overflow: hidden;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    transition: 1s;
}

.navigation .navArea ul li a .icon img{
    width: 100%;
    height: 100%;
    transition: 0.5s;
    object-fit: contain;
    transition: 1s;
}

.navigation .navArea ul li a:hover .icon{
    transform: scale(1.5);
}


