.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    border-radius: 99px;
    background-color: #2e3047;
    z-index: 99;
    cursor: pointer;
}

.hamburger {
    position: relative;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    z-index: 99;
}

.hamburger > span,
.hamburger > span::before,
.hamburger > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 99px;
    background-color: #FFF;
    transition-duration: .25s;
}

.hamburger > span::before {
    content: '';
    top: -8px;
}
.hamburger > span::after {
    content: '';
    top: 8px;
}
.menu-toggle.is-active .hamburger > span {
    transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger > span::before {
    top: 0;
    transform: rotate(0deg);
}
.menu-toggle.is-active .hamburger > span::after {
    top: 0;
    transform: rotate(90deg);
}

p
{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5em;
    margin-top: 0.1em;
}

li
{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h3
{
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
    text-decoration: underline;
}

article ul li a
{
    ont-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: bold;
    color: blue;
    text-decoration: none;
}

p a 
{
    ont-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: bold;
    color: blue;
    text-decoration: none;
}

h4
{
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: bold;
}

figure
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

figure img
{
    padding: 1em;
    border : 2px solid black;
    max-width:100%;
    height: auto;
    display: block;
}

figcaption
{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
    text-decoration: underline;
    margin-bottom: 0.5em;
    margin-top: 0.1em;
}

sup
{
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 0.5em;
}

aside nav ul{
    text-align: left;
    width: 95%; 
    padding: 1%;
    margin: 0em;
    list-style: none;
    font-size: 1em;    
}

aside nav ul li a
{
    color:white;
font-size: 1.1em;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
}

aside nav ul li{
    margin-bottom: 1em;
    width: 100%;
}

aside nav ul li:hover {
    background-color:rgba(230,230,230,0.2);
    color: black;
}

aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;   
    top : 0;    
    float: left;            
    width: 20%; 
    height: 100vh;
    padding: 1%;
    border: 2px  solid rgba(0, 0, 0, 0.75);
    box-shadow: 2px 3px 20px rgba(50, 50, 50, 0.5), 0 0 40px black inset;
        background-color: rgba(30, 30, 30, 0.9);
    overflow: auto;
    margin-right: 2vw;
    min-width: 15vw;

}

.articles
{
    max-width: 80vw;
}

.container
{
    display: inline-flex;
    align-items: baseline;
    margin-left: 0.9vw;
    flex-direction: row;
    padding-left : 0px;
}

@media screen and (max-width: 880px) {
    .menu-toggle {
        display: block;
    }
    .content {
        padding-top: 8rem;
    }
    aside {
        position: fixed;
        border: 2px  solid rgba(0, 0, 0, 0.75);
        box-shadow: 2px 3px 20px rgba(50, 50, 50, 0.9), 0 0 40px black inset;
        background-color: rgba(30, 30, 30, 1);
        top: 0;
        left: -400px;
        height: 110vh;
        width: 100%;
        max-width: 300px;
        transition: 0.2s linear;
        min-width: 0vw;
    }

    aside.is-active {
        left: 0;
    }

}
