:root {
    --main-bg-color:    #2d5283;
    --card-color:       #e7dbbf;
    --highlight:        #e3bd33;
    --regular-text:     #433e3c;
}

@font-face {
    font-family: Urbanist;
    src: url("assets/Urbanist.woff");
}

body {
    background-color: var(--main-bg-color);
    color: var(--regular-text);
    justify-items: center;
    font-family: 'Urbanist';
    font-size: larger;
    font-weight: bold;
}

h1 {
    color: var(--highlight);
    margin: 0;
}

small {
    font-size: small;
    font-weight: normal;
}

hr {
    margin: 1px;
    height: 1px;
    border: 0;
    border-radius: 10px;
    background-color: var(--highlight);
    mix-blend-mode: luminosity;
}

.article-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.donate {
    color: var(--card-color);
    max-width: 200px;
    font-size: small;
}

.header {
    max-width: 100%;
    text-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.description {
    color: var(--highlight);
    font-size: medium;
    text-shadow: 0 0 10px var(--regular-text);
    mix-blend-mode: hard-light;
}

.topper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding-bottom: 5px;
}

.card-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.url {
    text-decoration: underline;
}

.main {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--card-color);
    color: var(--regular-text);
    text-decoration: none;
    width: 70%;
    max-width: 800px;
    min-width: 400px;
    border-style: solid;
    border-color: var(--highlight);
    border-width: 1px;
    overflow: clip;
    border-radius: 20px;
    transition-duration: 0.3s;
}

.card:hover,
.card:focus {
    cursor: pointer;
    border-width: 5px;
    box-shadow: 0 0 20px var(--highlight);
}