@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');*/

@import url(base_02.css);

@font-face {
    font-family: 'adam.cg_proregular';
    font-style: normal;
    font-weight: 400;
    src: url('adam.cg_pro-webfont.woff2') format('woff2'), url('adam.cg_pro-webfont.woff') format('woff');
}

:root {
    --nav-col_count: 12;
}

body {
    font-family: Syne, Tahoma, Verdana, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    background: #000;
    margin: 0;
    display: grid;
    width: 100%;
}

main, footer {
    width: 75vw;
    display: grid;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
}

footer {
    height: 4rem;
    min-height: 4rem;
}

/*svg-h1, */
h1 {
    /*font-family: base_02regular, 'Julius Sans One', Syne, sans-serif;*/
    font-family: 'adam.cg_proregular', Futura, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transform: scale(1.1, 1);
    transform-origin: left top;
    color: #36f;
    margin-bottom: 0;
    fill: #36f;
}

img {
    border: 0;
}

img[src$=".svg"].icn,
input[src$=".svg"].icn {
    filter: invert(99%) sepia(25%) saturate(0%) hue-rotate(153deg) brightness(105%) contrast(100%);
    height: 3rem;
}

img[src*="lynch_cover"] {
    border: #222 0.5px solid;
}

p {
}

strong {
    font-weight: 700 !important;
}

table {
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    padding: 0;
}

td {
    text-align: center;
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    color: #fff;
    text-decoration: none;
}

a:link {
    font-weight: normal;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
}

a:visited {
    font-weight: normal;
    font-size: 1rem;
    text-decoration: overline;
    color: #999;
}

a:hover, a:active {
    text-decoration: underline;
    font-weight: normal;
    color: #36f;
}

.framed {
    border: rgba(255, 255, 255, 0.5) 5px solid;
    display: inline-block !important;
    height: max-content;
    overflow: hidden;
}

.text-blue {
    color: #36f;
}

.text-violet {
    color: #90c;
}

.text-cyan {
    color: #3ff;
}

.text-yellow {
    color: #ff0;
}

.text-chartreuse {
    color: #5f0;
}

.text-red {
    color: #f00;
}

.text-orange {
    color: #f40;
}

.text-gray, .text-grey {
    color: #999;
}

.text-dark-gray {
    color: #333;
}

.cycler {
    position: relative;
    display: flex;
    min-width: 250px;
}

.cycler > div {
    position: absolute;
    top: 0;
    min-width: 250px;
    color: #36f;
    background: #000;
    padding: 1rem;
    z-index: 1;
    filter: blur(0);
}

.cycler > .active {
    z-index: 3;
}

.cursor {
    opacity: 0;
    animation: cursor_blink 1.25s 4;
    animation-delay: 750ms;
}

.date-subttl {
    color: #35f;
    font-size: 1.5rem;
}

.span-grid {
    width: 100%;
    grid-column: 1/-1;
}

@keyframes cursor_blink {
    0% {
        opacity: 0;
        color: #36f;
    }
    33% {
        opacity: 1;
        color: #36f;
    }
    50% {
        color: #fff;
    }
    67% {
        opacity: 1;
        color: #36f;
    }
    100% {
        opacity: 0;
    }
}

#ttl_page > h1 {
    margin-left: 1rem;
}

/* Bootstrap Overrides */
.rounded-lg {
    border-radius: 0.5rem !important;
}

@media screen and (max-width: 540px)/*, screen and (max-aspect-ratio: 16/9)*/ {
    main, footer {
        width: 90vw;
    }

    .page-content {
        width: 100%;
        grid-template-columns: 50% 50%;
    }

    .single-col {
        grid-template-columns: 100% !important;
        /*grid-template-rows: auto auto !important;*/
        grid-auto-flow: row;
        grid-row-gap: 2rem;
        text-align: center;
    }
}