body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 96px;
    font-weight: 900;
    color: var(--brand-color);
    margin-bottom: 16px;
}

b, a {
    color: var(--brand-color);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
}