html {
    background-color: #000;
}

body {
    color: white;
    text-align: center;
}

.post-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    max-width: 1000px;
}

.post {
    border: 1px solid white;
    padding: 20px;
    width: 45%;
    background-color: #111;
    border-radius: 8px;
    text-align: left;
    box-sizing: border-box;
}

.post a {
    color: #1e90ff;
    text-decoration: none;
}

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

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}

th, td {
    border: 1px solid #444;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #444;
}

h2 {
    margin-top: 40px;
}

.nav {
    margin-bottom: 30px;
}

.nav a {
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
}

img {
    border: 1px solid #ffffff;
}