
@keyframes slidemenu {
    from {        
        -webkit-transform: translateX(110%);
        transform: translateX(110%);
    }
    
    to {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

#Header {
    position:fixed;
    top: 0;
    width: 100%;
    display: flex;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: space-between;
    border-bottom: 1px solid rgb(179, 6, 6);
    align-items: center;
    z-index: 150;
}

#Header .left a {
    display: flex;
    height: 50px;
    margin-left: 70px;
}

#Header img {
    height: 100%;
}



#Header .right {
    display: flex;
    justify-content: center;
    align-items: center;
}

#Header a {
    text-decoration: none;
}

#Header .right .left {
    display: flex;
    height: 100%;
    align-items: center;
    margin-right: 7px;
}

#Header .right .left a {
    height: 25px;
    width: 25px;
    font-size: 20px;
    margin: 5px;
    justify-content: center;
    align-items: center;
}

#Header i {
    color: rgb(180, 180, 180);
    font-style: normal
}

#Header .facebook:hover i {
    color: #405de6;
}

#Header .youtube:hover i {
    color: red;
}

#Header .instagram:hover i {
    color:  #C13584;
}

#Header .spotify:hover i {
    color: #1DB954;
}

#Header .mail:hover i {
    color: white;
}



#Header .right .right2 a {
    font-family: android_assassinregular, serif;
    color: white;
    font-size: 30px;
    padding: 0 10px;
    border-left: 1px solid white;
}

#Header .right .right2 a:hover {
    color: rgb(179, 6, 6);
}




#Headeropener {
    position: fixed;
    top: 15px;
    left: 15px;
    height: 40px;
    width: 40px;
    border: 1px rgb(179, 6, 6) solid;
    border-radius: 25%;
    color: white;
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 200;
}

#Headeropener i {
    font-size: 25px;
}

#Headeropener.closed {
    background-color: rgba(0, 0, 0, 0.7);
}

#Header.closed {
    display: none;
}



@media screen and (max-width:1200px) {
    #Header .left a {
        display: flex;
        height: 13vh;
        max-height: 13vw;
        margin-left: 1vh;
    }

    #Header {
        background-color: black;
        height: 15vh;
        max-height: 15vw;
    }

    #Header.closed {
        display: flex;
    }

    #Header:not(.closed) .right {
        transform: translateX(110%);
    }

    #Header.closed .right {
        animation: slidemenu 0.5s ;
    }

    #Headeropener {
        top: max(1vh,1vw);
        right: max(1vh,1vw);
        left: unset;
    }

    #Header .right {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 0;
        right: 0;
        bottom: 0;
        width: fit-content;
        background-color: black;
        flex-direction: column-reverse;
    }

    #Header .right .left {
        height: fit-content;
        width: fit-content;
        justify-content: space-around;
        align-items: center;
    }

    #Header .right .right2 {
        display: flex;
        height: fit-content;
        width: fit-content;
        justify-content: space-evenly;
        align-items: flex-start;
        flex-direction: column;
    }
    
    #Header .right .right2 a {
        font-size: min(10vw,10vh);
        margin: 0.5vh 0 0.5vh 0;
        border: none;
    }
}