@font-face {
    font-family: 'ComicSans';
    src: url('ComicSansMS.ttf') format('truetype');
}

body {
    font-family: "ComicSans", cursive, sans-serif;
    background-color: black;
    color: red;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    margin: 40px 0;
}

.container {
    padding: 20px;
}

.file-list {
    border: 3px solid red; 
    display: inline-block;
    padding: 20px; 
    margin-top: 20px;
    font-size: 100%;
}

.file-list a {
    display: block;
    color: gray;
    text-decoration: none;
    margin: 10px 0;
}

.file-list a:hover {
    text-decoration: underline;
}

.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
}

.footer a {
    margin: 0 10px;
    color: red;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
