* {
    margin: 0;
    padding: 0;
    font-family: 'DotGothic16', sans-serif;
}
body {
    color: white;
    background-color: black;
}
p {
    font-size: larger;
}
a {
    color: white;
    text-decoration: none;
    font-size: larger;
}
a:hover {
    text-decoration: underline;
}
#header {
    width: 100%;
}
#header ul {
    background-color: teal;
}
#header ul li {
    display: inline;
}
#header ul li a {
    display: inline-block;
    padding: 20px 20px;
}
#download {
    border: 1px solid rgb(63, 63, 63);
    background: white;
    color: black;
    margin: 2px;
}
#download:hover {
    transition: 1s;
    text-decoration: none;
    color: white;
    background: black;
    border-radius: 50px;
}
.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader img {
    width: 100px;
}
.loader.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}