* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f7fa;
    color: #222;
}

.container {
    max-width: 480px;
    margin: 40px auto;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.brand {
    font-weight: 600;
}

.link {
    display: inline-block;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #2a7ae2;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.link:hover,
.link:active {
    background-color: #1f5fb8;
}

/* Larger screens */
@media (min-width: 768px) {
    .container {
        max-width: 640px;
        padding: 32px;
    }

    .text {
        font-size: 1.2rem;
    }
}
