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

body {
    font-family: 'Times New Roman', Times, Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    font-variant: small-caps;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-style: italic;
}

.credit {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

