* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(circle at 50% 35%, #18263a 0%, #0b111a 45%, #05080d 100%);

    color: #e8edf3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.container {
    width: min(90%, 700px);
    text-align: center;
    padding: 40px;
}

.logo {
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 700;
    letter-spacing: -4px;
    line-height: 1;
}

.logo .net {
    color: #ffffff;
}

.logo .quick {
    color: #4da3ff;
}

.line {
    width: 70px;
    height: 3px;
    margin: 28px auto 34px;
    border-radius: 10px;

    background: linear-gradient(
        90deg,
        transparent,
        #4da3ff,
        transparent
    );
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    font-weight: 400;
    letter-spacing: 1px;
}

p {
    margin: 0;
    color: #98a5b5;
    font-size: 1.05rem;
    line-height: 1.8;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 42px;
    padding: 9px 16px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.03);

    color: #738195;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #45d483;

    box-shadow: 0 0 10px rgba(69, 212, 131, 0.7);
}

footer {
    position: fixed;
    bottom: 20px;

    color: #465160;
    font-size: 0.75rem;
}

@media (max-width: 500px) {
    .container {
        padding: 25px;
    }

    .logo {
        letter-spacing: -2px;
    }
}
