:root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color-scheme: light dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #111318;
    color: #e8eaed;
}

.container {
    width: min(620px, calc(100% - 32px));
}

.card {
    padding: 32px;
    border: 1px solid #30343b;
    border-radius: 12px;
    background: #191c21;
}

h1 {
    margin: 12px 0 8px;
    font-size: 24px;
    font-weight: 600;
}

p {
    color: #aeb4bd;
}

.status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #48c774;
}

dl {
    margin-top: 28px;
}

dl div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #30343b;
}

dt {
    color: #8d949e;
}

dd {
    margin: 0;
}

.footer {
    margin-top: 28px;
    margin-bottom: 0;
    font-size: 13px;
}
