body {
    font-family: "Courier New", Courier, monospace;
    font-size: 2em;
    background-color: rgba(8, 7, 7, 255);
    color: #f2f2f2;
    margin: 0;
}

a {
    color: #f2f2f2;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #f2f2f2;
    text-decoration: underline;
}

a:visited {
    color: #;
    text-decoration: none;
}

ul {
    padding: 0;
    list-style-type: none;
}

li {
    padding-left: 0.6em;
    margin-bottom: 0.4em;
}

h1,
h2,
h3,
h4 {
    padding-left: 0.3em;
}

div.slide-up {
    height: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0.4em;
}
div.slide-up img {
    animation: 15s slide-up;
    margin-bottom: 0%;
    max-width: 80vw;
    max-height: 100vh;
    margin-top: 2em;
}

@keyframes slide-up {
    0% {
        margin-top: 300%;
    }

    10% {
        margin-top: 300%;
    }

    100% {
        margin-top: 2em;
    }
}
