@font-face {
    font-family: 'PixelDigivolve'; /* This is the name you will use later */
    src: url('fonts/PixelDigivolve.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: PixelDigivolve, 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    margin-top: 10%;
    line-height: 1.5;
}

header {
    text-align: center;
    width: 100%; /* Ensures it takes up the full row to calculate the center */
}

main {
    margin-left: 20%;
    margin-right: 20%;
}

a {
    color: #ffffff;
}

#file-list {
    margin-top: 1rem;
}

#file-list li {
    margin-bottom: 5px;
    /* Keeps the monospace alignment perfect */
    white-space: pre; 
}

/* Optional: hover effect to make it feel interactive */
#file-list li:hover {
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
}
