@import url("https://fonts.upset.dev/css2?family=Geist:wght@100..900&family=Lacquer&family=Sen:wght@400..800&family=Special+Elite&family=Syne:wght@400..800&display=swap");
* {
    box-sizing: border-box;
}
h1#logo {
    font-family: Geist, sans-serif;
    font-size: 5rem;
    line-height: 90%;
    color: #2d4384;
    display: block;
    width: 50%;
    padding: 20px;
    margin: 0;
    @media screen and (max-width: 460px) {
        min-width: 100%;
    }
}
main h2 {
    font-family:
        Special Elite,
        monospace;
    color: #144292;
    font-size: 3rem;
    font-weight: 100;
}
main h3 {
    font-family: Geist, sans-serif;
    font-size: 2rem;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    color: #144292;
}
main p {
    font-family: Geist, sans-serif;
    line-height: 150%;
}
header {
    background-color: rgba(192, 186, 188, 0.5);
    margin: 0;
    display: flex;
    padding-top: 80px;
    padding-bottom: 10px;
    @media screen and (max-width: 420px) {
        flex-direction: column;
        align-items: flex-start;
    }
}
nav {
    width: 50%;
    text-transform: uppercase;
    overflow: hidden;
    @media screen and (max-width: 420px) {
        width: 100%;
    }
}
nav ul {
    height: 100%;
    vertical-align: middle;
}
nav ul li {
    background-color: #c80f16;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    box-shadow: 2px 2px 5px rgba(192, 186, 188, 0.8);
    display: block;
    border-radius: 1px;
    font-family: Sen;
    font-size: larger;
    @media screen and (max-width: 600px) {
        width: 100%;
    }
}
nav ul li:hover {
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
    transition: 0.4s ease-in-out;
}
nav ul li a,
nav ul li a:active,
nav ul li a:visited {
    color: #efefef;
    text-decoration: none;
    display: block;
    font-weight: 600;
    width: 100%;
}
nav ul li a:hover {
    color: #ffd23f;
    i {
        padding-left: 20px;
        transition: 0.5s ease-in;
    }
}

main ul,
main ol {
    font-family: Sen;
    font-size: 2rem;
}
aside.quote-top,
aside.quote-bottom {
    margin: 0;
    font-family: Geist;
    width: 100%;
    background-color: white;
}
aside.quote-top {
    padding: 8px;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
}
aside.quote-bottom {
    padding: 8px;
    margin-left: -10px;
    width: 102%;
    position: relative;
    top: 0;
    left: 0;
}
.quote-bottom.marquee-reverse span {
    animation: marquee var(--ad) linear infinite reverse;
}
aside a,
aside a:visited {
    color: blue;
    font-weight: 600;
}
html {
    border: 10px solid white;
    border-right: 15px solid white;
}
body {
    background-color: #c0babc;
}
#sticky-note {
    background-color: yellow;
    position: relative;
    top: -10px;
    left: -50px;
    transform: rotate(5deg);
    width: 170px;
    text-align: center;
    font-family: Lacquer;
    font-weight: 300;
    padding: 20px;
    box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.6);
    font-size: 160%;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}
#sticky-note:hover {
    transform: rotate(10deg);
}
#votereg {
    color: #000;
    display: block;
    transform: rotate(-5deg);
}
main {
    padding: 100px;
}
main p {
    font-size: 150%;
}
main a,
main a:visited,
main a:active {
    color: #c80f16;
    font-weight: 500;
}
main a:hover {
    text-decoration: none;
    color: #2d4384;
    transition: ease-in 0.5s;
}
footer {
    position: relative;
    top: 10px;
    left: 0;
    background-color: #fff;
    color: #454545;
    text-align: center;
    width: 99vw;
    font-size: 0.8rem;
    overflow: auto;
    margin-left: -15px;
    font-family: Sen;
    margin-bottom: 0;
}
footer p {
    width: 50%;
    margin: auto;
}
.marquee {
    font-size: clamp(4vw, 4rem, 8vw);
    overflow: hidden;
    width: 100%;
}
.marquee .marquee-reverse span:hover {
    animation-play-state: paused;
    animation: none;
}
.marquee-long {
    font-size: 1.25rem;
}

.marquee span {
    display: inline-block;
    white-space: nowrap;
    color: #00112c;
    width: var(--tw);
    text-shadow:
        var(--tw) 0 currentColor,
        calc(var(--tw) * 2) 0 currentColor,
        calc(var(--tw) * 3) 0 currentColor,
        calc(var(--tw) * 4) 0 currentColor;

    will-change: transform;
    animation: marquee var(--ad) linear infinite;
    animation-play-state: running;
}

.marquee:hover span {
    cursor: default;
    animation: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@media screen and (max-width: 500px) {
    .mobile-hide {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .marquee span {
        animation: none;
        text-shadow: none;
        width: auto;
        display: block;
        line-height: 1.5;
        text-align: center;
        white-space: normal;
    }
}

blockquote {
    background-color: #2d4384;
    color: #fff;
    padding: 50px 20px;
    margin: 20px auto;
    font-family: Sen;
    font-size: 1.5rem;
    width: 75%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(192, 186, 188, 0.8);
    line-height: 150%;

    @media screen and (max-width: 500px) {
        width: 90%;
    }
}
blockquote em {
    font-family: Sen;
    color: #fff;
    font-weight: 600;
    font-style: normal;
    text-decoration: underline;
    text-decoration-line: spelling-error;
}
blockquote a,
blockquote a:active,
blockquote a:visited {
    color: #e1e1e1;
    font-size: smaller;
    text-decoration: none;
}
blockquote a:hover {
    color: #fff;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

@media screen and (max-width: 420px) {
    .flex-container {
        flex-flow: column wrap;
    }
    .resource.card h3 {
        font-size: 3vw;
    }
    .card {
    }
}
.card {
    flex: 0 1 300px;
    flex-grow: 1;
}
.resource.card {
    background-color: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 1px 1px 5px rgb(0, 0, 0, 0.1);
    transition: all 2s ease;
}
.resource.card em {
    font-weight: 600;
    color: #c80f16;
    font-style: normal;
    text-transform: uppercase;
}
.resource.card p {
    font-size: 1rem;
}
.resource.card h3 {
    text-decoration: none;
    text-align: center;
}
.resource.card:hover {
    position: relative;
    bottom: 10px;
    transition: all .5s ease;
    cursor: default;
}
.resource.card ul {
    margin-top: 0;
    margin-left: -25px;
}
.resource.card ul li {
    list-style: square;
    font-size: 1rem;
    line-height: 150%;
}
