body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.logo {
    height: 60px;
    margin-bottom: 0.2rem;
    user-select: none;      /* prevent text/image selection */
    pointer-events: none;   /* disable clicks */
    -webkit-user-drag: none; /* disable dragging in WebKit browsers */
}

h1 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0rem;
}

.subtext {
    font-size: 1.1rem;
    color: #5f6572;
    margin-bottom: 0.5rem;
}

.external-url {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.external-url a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
}

.external-url a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    color: #6b7280;
}

.footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}