html, body {
    font-family: 'Exo 2', sans-serif;
}

body {
    background-image: 
        linear-gradient(rgba(111, 66, 193, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 66, 193, 0.2) 1px, transparent 1px);
    background-size: 5rem 5rem;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(111, 66, 193, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(173, 143, 229, 0.8) 1px, transparent 1px);
    background-size: 5rem 5rem, 10rem 10rem;
    animation: gridLight 8s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.modal-body {
    background-image: linear-gradient(#17082e 0%, #1a0933 7%, #1a0933 80%, #0c1f4c 100%);
}

.modal-footer {
    background-color: #0c1f4c;
}

.form-control, .form-control:focus {
    color: var(--bs-body-color);
}

@keyframes gridLight {
    0% {
        background-position: 0rem 0rem, 0rem 0rem;
    }
    100% {
        background-position: 0rem 5em, 10rem 0rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-helvetica-neue);
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 1em 0;
    line-height: 1.6;
}

.alert-warning {
    color: #7d1a1a !important;
}

.alert-warning h1 {
    font-size: 4rem;
    text-shadow: #7d1a1a 0px 0px 2px !important;
}

.alert-warning h1::after {
    content: '';
    /* Make an underline */
    display: block;
    height: 2px;
    background-color: #7d1a1a;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 2rem;
}

.alert-warning h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
}
    
.alert-warning h3::before {
    content: '⚠️';
    display: inline-block;
    margin-right: 0.5rem;
}

.alert-warning h3::after {
    content: '⚠️';
    display: inline-block;
    margin-left: 0.5rem;
}

.lead {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .alert-warning h1 {
        font-size: 8rem;
    }

    .alert-warning h3 {
        font-family: 'Exo 2', sans-serif;
        font-size: 3rem;
    }
    
}