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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #0a0e1b;
    color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    text-align: center;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: #d4af37;
}

.established {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4af37;
    margin-top: 1.5rem;
    opacity: 0.8;
}

footer {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.75rem;
    color: #ffffff;
    opacity: 0.5;
    letter-spacing: 0.05em;
}

footer p {
    margin: 0.25rem 0;
}

.contact {
    color: #d4af37;
    opacity: 0.7;
}

.about-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.about-link:hover {
    opacity: 1;
    color: #d4af37;
}