/* 1. Load your font from the root directory */
@font-face {
    font-family: 'ArchiveFont';
    src: url('font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 2. Apply font to the entire page body */
body {
    font-family: 'ArchiveFont', sans-serif;
    line-height: 1.6;
    padding: 20px;
}

/* 3. Apply to your specific headers */
h1, h3 {
    font-family: 'ArchiveFont', sans-serif;
    margin-top: 20px;
}

/* 4. Apply to all your download links */
a {
    font-family: 'ArchiveFont', sans-serif;
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

/* 5. Keeps your software icons (Bungee, Paper, etc.) aligned with the text */
img {
    vertical-align: middle;
    margin-left: 5px;
}