body {
    background-color: #fdf6e3;
    color: #333;
    font-family: "Courier New", Courier, monospace;
    text-align: center;
    padding-top: 50px;
}

h1 {
    font-size: 2em;
    margin-bottom: 40px;
}

a {
    display: block;
    margin: 15px 0;
    font-size: 1.2em;
    color: #0000cc;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

footer {
    margin-top: 60px;
    font-size: 0.8em;
    color: #666;
}

.table {
    margin: 1rem auto;
    border-collapse: collapse;
    font-family: "Courier New", Courier, monospace;
    font-size: 1rem;
    background: transparent;
    color: #000;
}

    .table th,
    .table td {
        border: 2px solid #000;
        padding: 6px 12px;
        background: transparent;
        text-align: left;
    }

    .table th {
        background: #c0c0c0;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.9em;
    }

@media (max-width: 600px) {
    .table,
    .table th,
    .table td {
        font-size: 1.6rem;
    }
}