body{
    display: flex;
    flex-direction: column;
    flex: auto;
    background: rgb(30, 30, 30);
    color: white;
    text-decoration: none;
}

main{
    display: flex;
    flex-direction: row;
    background: rgb(30, 30, 30);
    color: white;
    text-decoration: none;
}

article{
    flex: 2;
    overflow-y: auto;
    background: rgb(30, 30, 30);
    color: white;
    text-decoration: none;
}



aside{
    flex: 1;
    overflow-y: auto;
    background: rgb(30, 30, 30);
}

header a{
    color: white;
    font-weight: bold;
}

footer{
text-decoration: none;
color: white;
}

footer a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

img{
    max-width: 300px;;
}