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

body {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.status {
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    color: #a0a0a0;
    margin-bottom: 3rem; /* Space above logo */
    font-weight: 600;
}

.logo {
    max-width: 220px; /* Adjust this to make your logo bigger or smaller */
    height: auto;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4rem;
    letter-spacing: 0.05rem;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info a {
    display: block;
    text-decoration: none;
    color: #111;
    font-size: 1rem;
    margin: 0.8rem 0;
    transition: color 0.3s ease;
}

.social-links a {
    text-decoration: none;
    color: #111;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    transition: opacity 0.3s ease;
}

.divider {
    margin: 0 12px;
    color: #e0e0e0;
}

a:hover {
    color: #888;
    opacity: 0.7;
}

/* Keeps it looking good on phones */
@media (max-width: 480px) {
    .logo { max-width: 180px; }
}