body{
    font-size: large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    width: 75vw;
    box-shadow: 5px 5px 15px 2px rgba(0,0,0,0.63);

}
.maincontent{
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    
}
hr.solid{
    border-top: 1px solid #000000;
}
header{
    padding-bottom: 4%;
}
aside{
    flex:2;
    flex-grow: 1;
    padding: 2%;
    border-right: 1px solid black;
}
main{
    flex:1;
    flex-grow:8;
    display: flex;
    flex-direction: column;
    
    padding:2%; 

}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
    color:#800000;
}
footer{
    text-align: center;
    padding-bottom: 20px;
}
h1{
    margin-left: 2%;
}
.IconBar{
    width: 100%; /* Full-width */
    background-color: #555; /* Dark-grey background */
    overflow: auto; /* Overflow due to float */
}
.IconBar a{
    float: left; /* Float links side by side */
    text-align: center; /* Center-align text */
    width: 20%; /* Equal width (5 icons with 20% width each = 100%) */
    padding: 12px 0; /* Some top and bottom padding */
    transition: all 0.3s ease; /* Add transition for hover effects */
    color: white; /* White text color */
    font-size: 36px; /* Increased font size */
}
.IconBar a:hover{
    background-color:black;
}
.active{
    background-color: #800000;
}

