.invisible {
    opacity: 0%;
}

.visible {
    animation: fade 1s;
}

body {
    background-color: rgb(32, 32, 32);
    color: rgb(197, 194, 194);
}

a:visited {
    color:  rgb(223, 146, 4);
}

.container {
    margin: auto;
    width: 50%;
    font-size: 225%;
    font-family: Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;
    word-spacing: 2%;
    line-height: 120%;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

.fadeout {
    animation: fadeout 1s;
    opacity: 0;
}

@keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
}