* {
    font-family: "Montserrat";
    color: #36454f;
}

#login, #logout, #signup {
    display: none;
}
    
h1 {
    font-family: "Kaushan Script";
    font-size: 72px;
    color: #e3735e;
    display: flex;
}
    
h1::before, h1::after {
    content: "";
    background-color: #e3735e;
    height: 1px;
    margin-top: 64px;
}
    
h1::before {
    width: 20%;
    margin-right: 10px;
}
    
h1::after {
    margin-left: 20px;
    flex-grow: 1;
}
    
@media screen and (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
        
    h1::before, h1::after {
        margin-top: 32px;
    }
        
    h1::before {
        margin-right: 5px;
    }
    
    h1::after {
        margin-left: 10px;
    }
}

.footer {
    border-top: 5px solid #ffdead;
    background-color: #febb75;
    text-align: center;
    height: 100px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

p.footer {
    margin: auto;
}

html, body {
    margin: 0;
    padding: 0;
}

.header {
    border-bottom: 5px solid #ffdead;
    background-color: #febb75;
    max-width: 100%;
}

.navBar {
    overflow: hidden;
    position: relative;
    display: block;
}

.logo {
    display: block;
    width: 100%;
    margin: auto;
}

.nav-right a {
    float: right;
}

.nav-left a {
    float: left;
}

.nav-left a, .nav-right a {
    text-decoration: none;
    display: block;
    padding: 10px 12px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    color: #653030;
}

.nav-left a.active {
    font-weight: bold;
}

a.icon {
    display:none;
}

.nav-left a:hover, .nav-right a:hover  {
    background-color: #f69b66;
    color:#653030;
}


@media screen and (max-width: 600px) {
    .navBar a:not(:first-child) {display: none;}
    .navBar a.icon {
        float: right;
        display: block;
    }
    .navBar .nav-right a { 
        display: block;
    }
}

@media screen and (max-width: 900px) {
    .navBar a:not(:first-child) {display: none;}
    .navBar.responsive {position: relative;}
    .navBar.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navBar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .navBar.responsive .nav-right {
        display: none;
    }

    .navBar a.icon {
        float: right;
        display: block;
    }  
}
