/* Styles for About Me */

body {
    margin: 0;
    font-family: "Franklin Gothic", Arial, sans-serif;
    color: black;
    background-color:  rgb(210, 221, 247);
}

table {
    margin-left: 25%;
    margin-right: 25%;
    text-align: left;
    border: 2px solid white;
    border-collapse: collapse;
    background-color: rgb(85, 127, 219);
    color: white;
    width: 720px;
    height: 405px;
}

td {
    text-align: left;
    padding: 15px 15px 15px 15px;
    font-size: 150%;
    border: 2px solid white;
    border-collapse: collapse;
}

td.name {
    font-size: 200%;
    text-align: center;
}

td.role {
    font-size: 150%;
    height: 10%;
    white-space: pre-wrap;
}

td.brief {
    font-size: 125%;
    height: 70%;
    white-space: pre-wrap;
}

td.short {
    width: 30%;
}

td.list{
    padding: 5px;
    font-size: 115%;
}

.pic {
    width: 350px;
    padding-left: 7px;
    padding-right: 7px;
}

/* 	Navigation Bar Styles */
ul.nav {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    top: 0px;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background-color: rgb(85, 127, 219);
    position: fixed;
    font-family: "Franklin Gothic", Arial, sans-serif;
}

li.nav {
    float: left;
}

li.nav a.nav{
    display: block;
    color: white;
    text-align: center;
    padding: 15px 15px;
    text-decoration: none;
}

li.nav a:hover:not(.active) {
    background-color: rgb(35, 63, 122);
}

.active {
    background-color: hotpink;
}