/* Reset basic margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 2;
}

/* Header Styling */
.wrapper{
    width:100%;
    height:100vh;    
}
.header-bar {
    background-color: #2a323d;
    font-size: 10vh;
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    height:15vh;
}
.nav-bar{
	background-color:#2a323d;
	height:5vh;
	width:100%;
	display:flex;
	justify-content:flex-end;
	border-bottom-style:solid;
	border-bottom-width:5px;
	border-bottom-color:black;
}
.nav-link{
	color:white;
	height:100%;
	width: 5vw;
	display:flex;
	justify-content:space-around;
	align-items:center;
	text-align:center;
	background-color:#2a323d;
}

.nav-bar a {
text-decoration: none;
}
.nav-bar a:hover{
text-decoration:underline;
font-weight:bold;
}

.nav-link:hover{
        height:100%;
        width: 5vw;
        display:flex;
        justify-content:space-around;
        align-items:center;
        text-align:center;
        background-color:#526277;
	border-style:solid;
	border-width:1px;
}


.lower {
    display: flex;
    flex-direction:row;
    background-color: lightblue;
    min-height:90%;
    width:100%;
}
.left{
	background-color: #20262e;
	padding-right:20px;
}


.left-bar {
    white-space: nowrap;
	color:white;
    margin-top: 3rem;
    padding-bottom: 1rem;
    border-color:black;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-width: 1px;
    border-radius: 0px 25px 25px 0px;
    background-color: #2a323d;
    padding-left:6px;
    box-shadow: 10px 10px 10px black;
}
.left-bar a{
	text-decoration:none;
	color: white;
}
.left-bar a:hover{
	font-weight:bold;
}
.content{
	padding:1em;
	color:white;
    background-color: #20262e;
    flex-grow: 1;

}
.minor {
	line-height:1;
	padding: 0px 25px 0px 25px;
	list-style-type: none;
	font-size: 0.9em;
}
.minor-li{
    padding-top:0px;
}
.major {
    line-height:1;
    font-size: 1.2em;
    list-style-type: none;
}
.major-li{
    padding-top:25px;
}
