body {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
    margin: 40px auto;
    max-width: 800px;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    background-color: #fdfdfd;
}

.tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

a {
    color: #56018D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    display: block;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.name p {
    font-weight: bold;
    font-size: 32px;
    margin: 0;
}

.social-links a {
    margin: 0 10px;
    font-size: 20px;
}

.profile {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.profile img {
    max-width: 256px;
    border-radius: 5px;
}

.news {
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.news ul {
    list-style-type: none;
    padding-left: 0;
}

.news li {
    margin-bottom: 10px;
}

.news .date-col {
    width: 120px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    vertical-align: top;
    padding-right: 15px;
}

.news table {
    width: 100%;
    border-collapse: collapse;
}

.news th,
.news td {
    padding: 8px;
}

@media (max-width: 768px) {
    body {
        margin: 40px 20px;
    }

    .header {
        flex-direction: column;
        align-items: stretch;
    }

    .name {
        text-align: left;
    }

    .social-links {
        margin-top: 10px;
        text-align: right;
    }

    .social-links a {
        margin: 0 10px 0 0;
    }
}