* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0e1014;
    color: #f3f3f3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
    width: min(850px, calc(100% - 32px));
    margin: auto;
    padding: 70px 0;
}

header {
    margin-bottom: 40px;
}

h1 {
    margin: 0;
    font-size: 36px;
}

header p {
    color: #8c8f98;
    margin-top: 8px;
}

.global {
    display: flex;
    gap: 14px;
    align-items: center;

    padding: 20px;

    border-radius: 12px;
    border: 1px solid #292d35;

    margin-bottom: 40px;
}

.global strong {
    display: block;
}

.global small {
    color: #999;
    display: block;
    margin-top: 4px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.global.up .dot {
    background: #32c766;
}

.global.degraded .dot {
    background: #f5a623;
}

.global.down .dot {
    background: #ed5050;
}

h2 {
    font-size: 15px;
    color: #92959d;
}

.services {
    overflow: hidden;
    border: 1px solid #292d35;
    border-radius: 12px;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px;

    color: inherit;
    text-decoration: none;

    background: #17191f;

    border-bottom: 1px solid #292d35;
}

.service:last-child {
    border-bottom: none;
}

.service:hover {
    background: #1d2027;
}

.left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;
}

.status-dot.up {
    background: #32c766;
}

.status-dot.degraded {
    background: #f5a623;
}

.status-dot.down {
    background: #ed5050;
}

.service strong {
    display: block;
}

.service small {
    display: block;
    color: #858891;
    margin-top: 5px;
}

.label {
    font-size: 13px;
    font-weight: 600;
}

.label.up {
    color: #32c766;
}

.label.degraded {
    color: #f5a623;
}

.label.down {
    color: #ed5050;
}

footer {
    text-align: center;
    color: #777;
    margin-top: 40px;
    font-size: 13px;
}
