@font-face {
    font-family: "hyperlegible";
    src: url("Atkinson-Hyperlegible-Regular-102.ttf");
}

body {
    --theme-color-primary: black;
    --theme-color-secondary: white;
    --theme-accent: gold;
}

.liberapay-container {
    display: flex;
    flex-direction: column;
}

.liberapay-container>* {
    margin: 5px;
}

.endorsement {
    margin: 1rem;
    display: flex;
    flex-direction: row;
    width: 90vw;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.endorsement p {
    text-align: left;
}

.endorsement>div {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.endorsement>div>a {
    width: fit-content;

}

.endorsement>* {
    min-width: 360px;
    width: 50%;
}

.endorsement>div>* {
    max-width: 100%;
}

.endorsement:nth-of-type(odd) {
    flex-direction: row-reverse;

}

.endorsement>a::after {
    content: none !important;
}


@keyframes blink {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

#rss path {
    animation: blink 1s linear alternate infinite;
}

#rss path:nth-of-type(1) {
    animation: none;
}

#rss path:nth-of-type(2) {
    animation-delay: 0.25s;
}

#rss path:nth-of-type(3) {
    animation-delay: 0.5s;
}

#alert {
    border:1px solid var(--theme-accent);
    border-radius: 1rem;
    line-height: 16px;
    font-size:14px;
    align-items: center;
    display:flex;
    flex-direction: column;
}
#alert>* {
    max-width:90%;
}
#alert li, #alert h3{margin:0;}
#banner{
    padding-top:2rem;
    padding-bottom:2rem;
}
#banner-text {
    backdrop-filter: blur(2rem);
}
#banner-text>*{
    margin:5px;
    padding:5px;
}