*{
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
}

#container {
    height: 100%;
}

body{
    background-color: black;
    color: white;
    font-size: large;
}

#header{
    border-bottom: purple 5px solid;
    text-align: center;
    height: 20%;
}

#logo{
    scale: 0.5;
}

#content{
    height: 80%;
}

#nav{
    border-right: purple 5px solid;
    height: 100%;
    width: 20%;
    text-align: center;
}

a{
    color: purple;
}

#article{
    text-align: center;
    width: 80%;
    position: absolute;
    top: 20%;
    left: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-left: purple 5px solid;
}

#article>div{
    border: purple 5px solid;
    border-radius: 5px;
    width: 80%;
    margin-top: 30px;
    padding: 5px;
}