@import url('https://fonts.googleapis.com/css?family=Karla');
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Raleway');

* {
    /* makes the format look the same on all webpages */
    margin: 0;
    padding: 0;
}

/* navigation bar */

.navigation-bar {
    display: block;
    overflow: hidden;
}

.nav-bar-list { 
    background-color: white;
    list-style-type: none;
    top: 0;
    position: fixed;
    width: 100%;
    height: 90px;
}

.navigation-bar li { 
    float: right;
}

.navigation-bar li a {
    float: right;
    color: black;
    font-family: karla;
    font-size: 110%;
    text-align: center;
    padding: 34px 10px;
    margin-right: 30px;
    text-decoration: none;
}

.navigation-bar li a:hover {
    color: #ffbb00;;
    cursor: pointer;
}

#logo { 
    float: left;
    position: absolute;
    top: 0;
    margin: 0;
}

#logo img {
    width: 55px;
    height: 65px;
    overflow: hidden;
    padding: 20px 30px;
    cursor: pointer;
}

/* body */

body { 
    margin-left: 0;
    z-index: -1;
    background-color: rgba(131,96,195,0.6); 
    padding: 30px 0px;
    display: block;
    position: relative;
}

.project-name { 
	color: white;
    font-size: 215%; 
    font-family: raleway;
    font-weight:300;
    text-align: center;
    padding: 20px;
    display: block;
    z-index: -1;
}

.project-description { 
    color: black;
    font-family: karla;
    text-align: left;
    z-index: -1;
    line-height: 230%
}

.project-section-heading {    
    font-size: 180%; 
    font-weight:300;
    margin-left: 180px; 
    padding: 20px;
    text-decoration: underline; 
}


.project-description-text { 
    font-size: 168%; 
    margin-left: 200px;
    margin-right: 200px;
}

.project-description-list {
    font-size: 168%; 
    list-style-type: circle;
    margin-left: 200px;
    margin-right: 200px;
    text-align: left;
    padding-left: 25px;
    z-index: -1;
}

.indented-text { 
    padding-left: 40px;
    list-style-type: square;
}

.same-page-link { 
    color: black;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

#wiki-chatbot, #classifier, #movie-chatbot { 
    padding-top: 100px;
}


/* buttons */

button {
    background-color: white;
    font-family: karla;
    border: 2px solid #6483b1;
    border-radius: 0px;
    color: #8360c3;
    padding: 5px 7px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 110%;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

button:hover {
    background-color: #6483b1;
    color: white;
    border: 2px solid #8360c3;
}

