

header {
    background-color: #fff; /* White header background */
    color: #333; /* Dark text color for contrast */
    padding: 28px 20px 24px;
    text-align: center;
    border-bottom: 1px solid #ddd; /* Subtle border to distinguish the header */
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 4px;
}

.profile img {
    border-radius: 50%; /* Circular profile picture */
    width: 210px; /* Adjusted width */
    height: 210px; /* Adjusted height */
    object-fit: cover; /* Ensures the image covers the entire circular area */
    margin-right: 20px; /* Space between the picture and the name */
    border: 2px solid #d7d7d7;
}

.profilename {
    text-align: left;
}

.profilename h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 0.95;
    color: #1f1f1f;
}

.tagline {
    margin: 8px 0 14px;
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #666;
}

.tagline-blocks {
    display: flex;
    gap: 4px;
    margin: -2px 0 14px;
}

.tagline-blocks span {
    width: 10px;
    height: 10px;
    display: inline-block;
}

.tagline-blocks span:nth-child(1) {
    background-color: #b45b5b;
}

.tagline-blocks span:nth-child(2) {
    background-color: #c7a84a;
}

.tagline-blocks span:nth-child(3) {
    background-color: #5f7fa3;
}

.tagline-blocks span:nth-child(4) {
    background-color: #6f8b5d;
}

.social-links {
    margin-top: 0;
}

.social-links a {
    margin: 0 6px 0 0;
    display: inline-block;
    opacity: 0.82;
}

.social-links a:hover {
    opacity: 1;
}

.social-links img {
    width: 28px; /* Adjust the size of the logos */
    height: auto;
}

main {
    padding-top: 40px;
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
    background-color: #fff; /* White background for the main content */
}
footer {
    background-color: #fff; /* White footer background */
    color: #333; /* Dark text color for contrast */
    padding: 10px 0;
    text-align: center; /* Center the text inside the footer */
    border-top: 1px solid #ddd; /* Subtle border to distinguish the footer */
    margin-top: 20px; /* Add space above the footer */
}

.footer-credit {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

/* Layout */
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    display: grid;
    grid-template-columns: 140px 92px minmax(0, 1fr);
}

/* Props */
.ico {
    vertical-align: top;
    border-left: 2px solid #cfcfcf;
    position: relative;
}
.ico img {
    border-radius: 5px;
    width: 100%;
    max-width: 80px;
    margin-left: 10px;
}
.desc {
    vertical-align: top;
    font-size: 15px;
    line-height: 1.72;
    color: #3f3b37;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.01em;
    padding-left: 20px;
    padding-bottom: 20px;
}

.desc p {
    margin: 0 0 14px;
}

.desc p:last-child {
    margin-bottom: 0;
}
.entry-dot {
    position: absolute;
    top: 0px;
    left: -8px;
    width: 10px;
    height: 10px;
    border-radius: 7px;
    background-color: #cfcfcf;
    border: 2px solid white;
}
.timespan {
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: right;
    padding-top: 2px;
    padding-right: 5px;
    color: #666;
    white-space: nowrap;
}
.hassets {
    position: relative;
}
