* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f1e8;
    font-family: Georgia, serif;
    position: relative;
}

.container {
    text-align: center;
}

h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subtitle {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.email-link {
    font-family: Georgia, serif;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #666;
}

.address-block {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    white-space: nowrap;
}

.separator {
    margin: 0 1rem;
    color: #999;
}

.address-block a {
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #666;
    transition: color 0.3s ease;
}

.address-block a:hover {
    color: #333;
} 