* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: #0e0e10;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap {
    text-align: center;
    padding: 40px;
    max-width: 720px;
}

h1 {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
}

.pills span {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 14px;
    opacity: .9;
}

.card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
}

.card-text {
    opacity: .8;
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: .2s;
}

.btn:hover {
    background: white;
    color: black;
}

.serious {
    margin-top: 10px;
    display: block;
    opacity: .5;
}

.note {
    margin-top: 35px;
    font-size: 13px;
    opacity: .4;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}