@import url(https://weloveiconfonts.com/api/?family=fontawesome|typicons);
[class*="fontawesome-"]:before{
    font-family: 'FontAwesome', sans-serif; }

*{
    margin: 0;
    padding: 0;
    font-family: 'Century Gothic', sans-serif; }

header{
    width: 100%;
    height: 75px;
    background: #fff;
    color: #000;
    position: fixed;
    z-index: 100;
    border-bottom: 1px #fff solid;
    border-top: 1px #fff solid;
    box-shadow: 0px 0.2px 0.6em gray; }

#menu-bar{
    display: none; }

header .logo{
    float: left;
    margin-left: 1%; }

header label{
    float: right;
    font-size: 30px;
    cursor: pointer;
    margin-top: 18px;
    margin-left: 10px;
    margin-right: 18px; }

.menu{
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,1);
    transition: all 0.6s;
    transform: translateX(-100%); }

.menu a{
    display: block;
    color: #962e79;
    font-weight: bold;
    height: auto;
    text-decoration: none;
    padding: 22px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: all 0.7s; }

.menu a:hover{
    border-radius: 20px;
    background: #962e79;
    color: #fff; }

#menu-bar:checked ~ .menu{
    margin-top: 10px;
    transform: translateX(0%); }

@media (min-width:1100px){
    .menu{
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex; }

    header label{
        display: none; }
}

@media screen and (max-width: 1100px){
    a{
        border-bottom: 3px #c6c6c6 solid; }
}
