@keyframes ausblenden {
    from { background-color: rgba(95,15,64,1); }
    to { background-color: rgba(95,15,64,0.1); }
}

@-moz-keyframes ausblenden { /* Für Firefox */
    from { background-color: rgba(95,15,64,1); }
    to { background-color: rgba(95,15,64,0.1); }
}

@-webkit-keyframes ausblenden { /* Für Safari und Chrome */
    from { background-color: rgba(95,15,64,1); }
    to { background-color: rgba(95,15,64,0.1); }
}

@-o-keyframes ausblenden { /* Für Opera */
    from { background-color: rgba(95,15,64,1); }
    to { background-color: rgba(95,15,64,0.1); }
}

#divlogo{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -159px;
    margin-left: -128px;
    width: 256px;
    height: 318px;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: rgba(95,15,64,0.1);
    animation: ausblenden 5s;
    -moz-animation: ausblenden 5s; /* Für Firefox */
    -webkit-animation: ausblenden 5s; /* Für Safari und Chrome */
    -o-animation: ausblenden 5s; /* Für Opera */
    display: flex;
}

span.coverheading {
    font-size: xx-large;
    color: rgb(94, 15, 64);
}

/*
 ----------------------------------------------------------------------------------------------------------------------
 - MENU
*/

div.menu {
    display: flex;
}

svg.iconify {
    width: 24px;
    height: 24px;
}

ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(94, 15, 64);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .75rem;
    border-radius: 10px;
    box-shadow: 0 10px 50px 0 rgba(5,4,62, .25);
}

li.menu + li.menu {
    margin-top: .75rem;
}

a.menu {
    color: #EFE7EC;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    position: relative;

    &:hover, &:focus, &.active {
        background-color: rgb(143, 87, 121);
        outline: 0;

        span.menu {
            transform: scale(1);
            opacity: 1;
        }
    }

    i.menu {
        font-size: 1.375rem;
    }

    span.menu {
        position: absolute;
        background-color: rgb(95,15,64);
        white-space: nowrap;
        padding: .5rem 1rem;
        border-radius: 6px;
        left: calc(100% + 1.5rem);
        transform-origin: center left;
        transform: scale(0);
        opacity: 0;
        transition: .15s ease;

        &:before {
            content: "";
            display: block;
            width: 12px;
            height: 12px;
            position: absolute;
            background-color: rgb(95,15,64);
            left: -5px;
            top: 50%;
            transform: translatey(-50%) rotate(45deg);
            border-radius: 3px;
        }
    }
}

