*{
    padding: 0;
    margin:0;
}
body{
    font-family: 'Franklin Gothic Medium', Arial, sans-serif;
}

button{
    padding:10px;
    margin: 10px;
    background-color: #424242;
    color:white;
    outline: none;
    border:none;
    cursor: pointer;
}
.navBar {
    width: 100%;
    height:25px;
    background-color: #424242; 
    padding:10px 0px 15px 0px;
}
    .logo{
        color:white;
        font-weight: bold;
        font-size: 18pt;
        padding-left:15px;
        float: left;
    }
    .logo:hover{
        text-decoration: underline;
        cursor: pointer;
    }
    .navList {
        float: right;
    }
    .navList ul li{
        float: left;
        padding-top:5px;
        padding-right:15px;
        list-style: none;
        color:white;
        font-weight: bold;
    }
    .navList ul li:hover{
        text-decoration: underline;
        cursor: pointer;
    }
.mainContent {
    margin:20px;
}
textarea{
    font-size: 14pt;
}
a{
    color:#424242;
}
a:active{
    color:red;
}
a:hover{
    color:greenyellow;
    font-weight: bold;
    background-color: black;
    padding: 10px;
}

.dashboardMessages{
    height: 20px;
    border-bottom: 1px solid black;
    background-color: lightgrey;
    color: black;
    font-size: 12pt;
    text-align: center;
    display: none;
    padding:8px;
}