
@import url('https://fonts.googleapis.com/css?family=Koulen&display=swap');

.burger {
    position: absolute;
    margin-top: 20px;
    display: inline;
    z-index: 10;
    width: 50px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 4px 0;
    -webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    left: 10px;
}

.burger:hover {
    background-color: #ffffff;
}

.line {
    display: block;
    position: absolute;
    height: 6px;
    width: 30px;
    left: 48%;
    top: 3px;
    margin-left: -15px;
    border-radius: 10px;
    box-sizing: content-box;
    -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
    background-color: rgb(255, 255, 255);
}

.line:nth-child(2) {
    top: 13px;
}

.line:nth-child(3) {
    top: 23px;
}

.hover {
    background-color: rgb(0, 0, 0);
}

/*STYLE THE NAVIGATION MENU*/

nav{
    display: none;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 25px;
    bottom: 10px;
    left: 50px;
}

ul {
    text-align: center;
    font-size: 1.3em;
    font-family: 'Koulen', sans-serif;
    list-style-type: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    height: 20px;
    width: 800px;
    padding: 0px;
    margin: 0px;
}

ul li {
    display: inline;
    color: white;
    padding-right: 60px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

ul li:hover {
    cursor: pointer;
    color: #e06666;
}

/*Create the morphing effect using CSS & CSS3 transitions.*/
.burger.expand {
    display: inline-block;
    margin-top: 0;
    padding: 0px 0 45px;
    width: 98%;
    border-radius: 15px;
    border: 3px solid #8d0000;
    background-color: #ce0000c1;
    height: 3px;
    top: 10px;
    left: 12px;
}


.expand .line {
    width: 22px;
    height: 5px;
    margin-left: -20px;
    top: 20px;
    left: 40px;
}

.expand .line:first-child {
    transform: rotate(45deg);
}

.expand .line:nth-child(3) {
    transform: rotate(-45deg);
}

.expand .line:nth-child(2) {
    opacity: 0;
}



#logo2 a img {
    position: relative;
    width: 130px;
    display: inline;
    top: 6px;
}

#logo2 a {
    position: relative;
    width: 130px;
    display: inline;
    bottom: 5px;
    height: 20px;
    right: 70px;
}

#logo2 {
    position: absolute;
    display: none;
    top: 3px;
    float: left;
    width: 30%;
    text-align: center;
    left: 75%;
}

@media only screen and (max-width: 800px) {

    body {
        background-color: #454545;
    }

    .burger.expand {
        position: absolute;
        width: 92%;
        height: fit-content;
    }

    nav{
        position: relative;
        width: 90%;
        height: 100%;
        bottom: 10px;
        left: 40px;
        top: 5px;
        margin-right: 0px;
    }


    ul li {
        display: flex;
        flex-direction: column;
        color: white;
        padding-right: 60px;
        margin-top: 10px;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

    ul {
        text-align: center;
        position: relative;
        display: inline;
        margin-right: 0px;
        right: 50px;
        left: 10px;
        width: 95%;
    }

}