:root{
    --cstm-blue: #1a5eb5;
    --cstm-red: #b62b2b;
    --cstm-red-dark: color-mix(in srgb, var(--cstm-red), black 20%);
    --cstm-red-light: color-mix(in srgb, var(--cstm-red), white 20%);
}

a{
    color: var(--cstm-blue);
    text-decoration: underline dashed;
}
body{
    font-family: 'Oswald','Poppins', sans-serif;
    position: relative;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
    line-height:1.5;
    user-select: text;
    font-size: 15px;
    /* background-image: url(../img/bg.svg);
    background-repeat: no-repeat;
    background-attachment: fixed; */
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' style='background:%23fff;' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle type='text/css'%3E@keyframes dot{0%{transform:translateX(0);}100%{transform:translateX(-100%);}}.dot{animation:dot 30s infinite linear;fill:%23ddd;}.dot-reverse{animation-direction:reverse;}%3C/style%3E%3Ccircle class='dot' cx='12' cy='12' r='2'/%3E%3Ccircle class='dot' cx='60' cy='12' r='2'/%3E%3Ccircle class='dot dot-reverse' cx='36' cy='36' r='2'/%3E%3Ccircle class='dot dot-reverse' cx='84' cy='36' r='2'/%3E%3C/svg%3E");

  height: 100vh;
  width: 100vw;
    
}
ul.cstm-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
} 
ul.cstm-list li {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 1em;
}
  
ul.cstm-list li:before {
    content: "+";
    padding-right: 5px;
}
.btn-primary{
    background-color: var(--bs-body-color);
    border: none;
}
.btn-primary:hover,.btn-primary:focus{
    background-color:  #333;
}
.form-control{
    overflow: hidden;
}
.form-control:focus,.btn-primary:focus{
    border-color:inherit;
    box-shadow:0 0 0 .25rem rgba(67, 67, 67, 0.5)!important
}
.form-area{
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding:20px;
}
.form-area hr{
    opacity: 0;
}
label{
    font-weight:800!important;
    font-size: .875em!important;
}
.section, #user-info{
    scroll-margin: 68px;
}
.section h1 {
    margin-bottom: 2rem;
}
.section p{
    font-weight: 400;
}
.nav-link{
    color: #333;
}
.nav-link:hover{
    color: #666;
}
.nav-pills .nav-link.active{
    background-color: #333;
    color: #fff!important;
}
.help-block{
    background: var(--bs-warning);
    color: #fff;
    border-radius: 6px!important;
    padding: 3px 5px;
    display: inline-block;
    margin: 10px 0;
}

button.arrow::after{
    content:"\2192";
    padding-left:.5em;
    font-size: .875em;
}


/* 2024 stuff */

section{
    outline: 2px solid black;
    padding: 2em;
    background-color: var(--bs-body-bg);
}

section h2{
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .5em;
    margin-bottom:1em;
}

section h2 span{
    box-shadow: 0 2px var(--cstm-red);
}
.box{
    padding: 10px;
    background-color: var(--bs-body-bg);
}
#header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2em;
}
#header #slogan{
    transform: translateX(-10px);
}
#header h1{
    display: flex;
    align-items: flex-end;
    padding-left: .25em;
    position: relative;
    text-transform: uppercase;
    font-weight: 900;
    gap: .3em;
    
}
#header h1::before {
	content: '';
	border-left: 4px solid var(--cstm-red);
	height: 94%;
	top: 6%;
	position: absolute;
	left: 0;
}
#header h1 > div {
    letter-spacing: -2px;
    line-height: .92em;
    display: flex;
    flex-direction: column;
}
#header h1 time{
    font-weight: 100;
    font-size: 0.62em;
    color: var(--cstm-red);
}

.btn-cstm{
    border-radius: 1px;
    background-color: var(--cstm-red-light);
    border: 1px solid var(--cstm-red);
    border-bottom: 3px solid var(--cstm-red);
    
    display: inline-flex;
    align-items: center;
    gap: .3em;
}
.btn-cstm:hover{
    background-color: var(--cstm-red);
    border-bottom-color: var(--cstm-red-dark);   
}

.logo {
    width: 60px;
    transform: translateY(-10px);
}
@media (width > 752px) {
    .logo {
        width: 100px;
        transform: translateY(0);
    }
}