@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;
}
header{
    background-color: #C9A03F ;
    color: white;
}
#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;
}
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;
}
article p{
    line-height: 1.7;
}
aside h2{
    margin-left: 2%;
}
aside ul li::marker{
    color: #FFD700
}
a:link{
    color:white
}
a:visited {
    color: white;
}

@media (max-width: 768px) {
    #main {
        flex-direction: column;
        align-items: center;
    }

    nav {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    article {
        max-width: 90%;
        padding-left: 0;
    }

    aside {
        max-width: 90%;
        margin-top: 20px;
    }

    footer {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    article h2 {
        font-size: 1.5em;
    }

    nav ul {
        font-size: 1.2em;
    }

    article img {
        width: 100%; /* Make images responsive */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    article h2 {
        font-size: 1.3em;
    }

    article h3 {
        font-size: 1.1em;
    }

    nav ul {
        font-size: 1em;
    }

    aside ul li {
        font-size: 1em;
    }
}
