body {
    background: url(../images/about.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Helvetica,Arial,Lucida,sans-serif;
}

.navbar {
    position: fixed;
    transition: 1s;
    background-color: rgba(0,0,0,0.05);
}

.navbar-brand {
    color: #fff;
    font-size: 45px;
    /*font-family: Germania;*/
    cursor: pointer;
}

.icon-bar {
    background-color: #000;
}

.nav {
    /*font-family: Lithos Pro;*/
    color: #fff;
    padding-right: 20px;
}

    .nav li {
        padding: 10px;
        cursor: pointer;
        font-size: 16px;
    }

        .nav li:after {
            content: '';
            display: block;
            border-bottom: 2px solid #38fd07;
            transform: scaleX(0);
            transition: .2s ease-in-out;
        }

        .nav li:hover:after {
            transform: scaleX(1);
        }

.para {
    min-height: 700px;
}

    .para h3 {
        text-align: center;
        /*margin-top: 15%;*/
        color: #fff;
        /*font-family: nyala;*/
        font-size: 44px;
    }

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

body::-webkit-scrollbar {
    width: 14px;
}

body::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.5);
    background: #501e27;
}

@media(max-width: 720px) {
    body {
        background-size: 100% 100%;
    }

    .navbar-collapse {
        background: rgba(113,144,198,0.7);
    }
}
