* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: normal;
    height: 100vh;
    /* Full-screen background image setup */
    background-image: url('../1903-12-17.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 90% center; 
    background-color: #c2bebb;
}
body.mega {
    background-position: left center;
}

.container {
    max-width: 450px;
    margin: 0 auto;
    padding-top: 30px;
}

.content-box {
    margin-bottom: 40px;
}

.name {
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.name a {
    text-decoration: none;
    color: white;
}

.name a.back:before{content:'←'}
.name a.back {
    position: absolute;
    left: -40px;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-size: 20px;

}

.intro {
    margin-bottom: 30px;
}

.intro p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: white;
    margin-bottom: 18px;
}

.intro a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.intro a:hover {
    color: #424036;
    text-decoration-color: #424036;
}

/* Contact page specific styles */
.contact-links {
    list-style-type: none;
    padding: 0;
}

.contact-links li {
    line-height: 30px;
}

.contact-links li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.contact-links li a:hover {
    color: white;
    text-decoration: underline;
}

.contact-links li span {
    opacity: 0.4;
    font-weight: 100;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 20px 15px;
    }
} 