body {
    font-family: "Courier New", Courier, monospace;
    font-size: 15px; 
    color: #333; 
    margin: 0;
    padding: 20px;
    position: relative;
    text-align: left; 
    line-height: 1.6;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit; 
}

.content-container {
    max-width: 800px;
    margin: 0 auto; 
    padding-top: 20px;
}

p {
    margin-bottom: 1em;
}

.name-header {
    text-align: right;
    line-height: 1.2;
    margin-bottom: 5px;
}

.home-icon-link { 
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1000;
    transition: all 0.2s ease-in-out;
}

.home-icon-link:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.home-icon-link img { 
    width: 15px;
    height: 15px;
    display: block;
    filter: brightness(0);
}

.main-contact-details {
    font-family: "Courier New", Courier, monospace;
    font-size: 20px;
    margin: 0;
    padding: 0;
    text-align: center;
    white-space: nowrap; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 5px;
}

.contact-detail-group {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.icon-link-left {
    display: flex;
    align-items: center;
    margin-right: 15px;
    line-height: 0;
}

.icon-link-right {
    display: flex;
    align-items: center;
    margin-left: 15px;
    line-height: 0; 
}

.main-contact-details img {
    width: 20px; 
    height: 20px;
    filter: brightness(0);
}

.separator-icon {
    display: inline-block;
    font-size: 24px; 
    line-height: 1; 
    vertical-align: 0px; 
    margin: 0 10px;
}

.summary-heading {
}