* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Arial, Helvetica, sans-serif;

    background: #f7f8f7;
    color: #202420;
}

.container {
    width: min(90%, 500px);

    text-align: center;
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

p {
    color: #686d68;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.status {
    display: inline-block;

    padding: 7px 14px;

    border: 1px solid #d9ddd9;
    border-radius: 20px;

    font-size: 0.85rem;
    color: #555b55;
    background: #fff;
}