body {
    background-color: #f0f0f0;
    align-items: center;
    font-size: 20px;
}

.main-div{
    background-color: white;
    padding: 5%;
    margin: 1% 15% 1% 15%;
    text-align: center;
}

.left-aligned{
    text-align: left;
}
.right-aligned{
    text-align: right;
}
.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
hr{
    border: 1px solid black;
    padding: 0;
    margin: 0;
}
ul>li{
    text-align: left;
}

table,tr,th,td{
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;
}

#career-section>div{
    border-left: 5px solid blue;
    padding-left: 10px;
}

/* navbar */
.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #04AA6D;
    color: white;
}