* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background: #1a0f0f;
    font-family: monospace;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 20px;
}

.vline {
    width: 1px;
    height: 36px;
    background: rgba(179, 94, 94, 0.25);
    margin-bottom: 20px;
}

.word {
    font-size: 11px;
    color: rgba(240, 176, 176, 0.35);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.sub {
    font-size: 9px;
    color: rgba(179, 94, 94, 0.25);
    letter-spacing: 0.12em;
}