html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.footer {
    width: 100%;
    background-color: #111;
    border-top: 3px solid black;
    color: #ccc;
    text-align: center;
    font-size: 10px;
    font-family: Monocraft;
    padding: 5px 0;
    padding-bottom: 10px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.footer-content > * {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    text-shadow: -1px 1px 0 black;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ddd;
    text-decoration: underline;
}
