.center-format {
    margin: auto;
    padding: 8px;
    min-width: 200px;
    max-width: fit-content;
}

h1.special-centered {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.flex-container {
    display: flex;
}

.flex-content-centered {
    justify-content: center;
    align-items: center;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

html {
    /*background: url("./img/matrix-style-binary-code-digital-falling-numbers-blue-background_1017-373.jpg");
    background-size: cover;
    background-repeat: no-repeat !important;*/
    background-color: #041838;
    scroll-behavior: smooth;
}

.scroll-target-section {
    scroll-margin-top: 72px;
}

body {
    border: 8px solid #444;
    border-radius: 12px;
    border-width:4px;
    background-color:White;
    margin:30px;
    margin-top: 70px !important;
    font-family: Ariel, sans-serif;
}

.maxwidth500 {
    max-width: 500px;
}

.marquee-container {
    overflow: hidden;
    width: 100% !important;
    box-sizing: border-box;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    width: fit-content;
    justify-content: space-around;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-25%);
    }
}

span.marquee-span {
    font-family: Papyrus;
}

span a.marquee-link {
    text-decoration: none !important;
    color: black;
}

span.centered {
    display: inline-block;
    margin: 3px;
}

span.minimumheight {
    display: block;
    height: fit-content !important;
}

h1 {
    font-family: Serif, Times New Roman;
}

.marquee-content:hover span a.marquee-link {
    color: blue !important;
}

header.header {
    background-color: #08285c;
    font-family: Serif, Times New Roman;
    border-radius: 5px;
    color: white;
}

.no-top-margin {
    margin-top: 0 !important;
}

.no-right-margin {
    margin-right: 0 !important;
}

nav.nav {
    position: fixed;
    top: 0;
    /*background-color: rgba(0, 0, 0, 0);*/
    background-color:#040114;
    margin-left: -40px;
    margin-right: -20px;
    width: calc(100% + 60px);
    box-sizing: border-box;
    z-index: 999;
}

nav.nav.scrolled {
    background-color: #040114;
    background-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav div.nav-left-content {
    align-items: center;
    gap: 5px;
    margin-left: 25px;
    padding-left: 5px;
    padding-top: 5px;
}

nav div a.nav-item {
    letter-spacing: 1px;
    padding: 14px 20px;
    color: white;
    text-decoration: None;
    transition: background-color 0.4s ease, color 0.4s ease;
}

nav div a.nav-item:hover {
    background-color: white;
    color: #040114;
}

p.special-centered {
    margin: 0 auto;
}

img.circle-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin: 3px;
}

div.mininumsize {
    width: fit-content;
}

a, a:visited {
    color: blue;
}

.small-margin-on-right {
    margin: 10px;
}

.no-pad-top-or-bottom {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.no-bottom-pad {
    padding-bottom: 0 !important;
}

.timesnewromanfont {
    font-family: Times New Roman;
}