@font-face {
    font-family: "Helvetica";
    src: url('../fonts/Helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: "Helvetica", sans-serif;
    margin: 0;
}
#main{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
header{
    text-align: center;
    font-weight: bolder;
}
nav{
    background-color: #001F54;
    max-width:15%;
    flex:1;
    color:white;
}
article{
    flex:2;
    max-width: 60%;
    padding-left: 3%;
}
aside{
    background-color: #F5F5F5;
    max-width:25%;
    flex:1;
}
footer{
    position: fixed;
    bottom:0%;
    left:45%;
}
ul li{
    margin-bottom: 6%;
}
nav ul{
    list-style-type: none;
    font-size: large;
}
article > * {
    margin-top: 20px;  
    margin-bottom: 20px;  
  }
article h2{
    color:#001F54
}
article h3{
    font-weight: bold;
}
aside h2{
    margin-left: 2%;
}
aside ul li::marker{
    color: #FFD700
}