body {
    color: rgb(21,21,21);
    font-size: 18px;
    font-family:
            -apple-system, /* macOS & iOS */
            BlinkMacSystemFont, /* macOS Chrome */
            "Segoe UI", /* Windows */
            Roboto, /* Android */
            Oxygen, /* KDE */
            Ubuntu, /* Ubuntu systems */
            Cantarell, /* GNOME systems */
            "Helvetica Neue", Arial, sans-serif; /* General fallback */
}

.wrapper {
    margin: 1rem auto;
    max-width: 850px;
    background-color: white;
    border: 1px rgb(139, 141, 141) solid;
}

h1 {
    margin-top: 0;
    font-size: 32px;
}

.element-header {
    font-size: 28px;
}

.btn, .breadcrumb, .card-panel {
    display: none !important;
}

.logo {
    display: flex;
    justify-self: center;
    padding: 20px 0;
}

.frame-background-dark {
    background-color: #BB0813;
    padding-top: 40px;
    padding-bottom: 40px;
    color: white;
}

.text-info {
    color: rgb(139, 141, 141);
    text-transform: uppercase;
    font-size: 15px;
}

.d-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.d-flex div {
    margin-right: 20px;
}
.text-white {
    color: white;
}
.container-fluid {
    padding: 0 20px;
}
ul {
    list-style: none;
    padding-left: 0;
}
ul li {
    position: relative;
    padding-left: 1em;
    max-width: 700px;
}
ul li::before {
    content: "•";
    color: red;
    font-size: 0.7em;
    position: absolute;
    left: 0;
    top: clamp(0.2rem, 0.2rem, 0.2rem);
    transform: none;
}