@font-face {
    font-family: b612;
    src: url(/static/fonts/B612-Regular.woff2);
}

@font-face {
    font-family: InclusiveSans;
    src: url(/static/fonts/InclusiveSans-Regular.ttf);
}

body {
    font-family: InclusiveSans, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0px;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

button {
    padding-left: 0;
    padding-right: 0;
    direction: ltr;
    cursor: pointer;
}

.hidden {
    visibility: hidden;
}

header {
    height: 3em;
    background-color: #efe8fa;
    border-bottom: 5px;
    border-color: #8a2be2;
    border-bottom-style: solid;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
}

#link-logo {
    height: 100%;
    display: inline-block;
}

.logo {
    height: 100%;
}

#donate {
    height: 100%;
    width: 200px;
    background-color: #df7654;
    border: solid 2px #df7654;
    font-size: 25px;
    color: #fff0eb;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: #df765430 0px 5px 15px;
    transition: 0.3s;
}

#donate:hover {
    background-color: #ffa183;
}

.las {
    background-color: transparent;
}

div.container {
    display: flex;
    flex-direction: column;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    padding-right: 50px;
    width: calc(100% - 100px);
}

div.footer {
    height: fit-content;
    padding-right: 50px;
    padding-left: 50px;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

div.footer > * {
    font-size: 15px;
}

@media (max-width: 1390px) {
    div.container {
        padding-left: 10px;
        padding-right: 10px;
        width: calc(100% - 20px);
    }
}

@media (max-width: 750px) {
    div.footer {
        padding-left: 0;
        padding-right: 0;
        justify-content: space-around;
    }
}

@media (max-width: 640px) {
    div.container {
        padding: 0;
        width: 100%;
    }

    #donate {
        width: 100px;
        font-size: 20px;
    }

    header {
        height: 2.5em;
        background-color: #efe8fa;
        border-bottom: 5px;
        border-color: #8a2be2;
        border-bottom-style: solid;
        display: flex;
        justify-content: space-between;
    }

    .footer > * {
        width: min-content;
    }
}
