html,
body,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.widget,
.widget body,
.widget #app {
    background-color: transparent;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    font-size: 2rem;
    color: white;
}

html:not(.widget) {
    background-color: white;
}

.widget #app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.widget .donation-alert p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .7s ease, transform .7s ease;
    text-align: center;
}

.widget .donation-alert.animate p {
    opacity: 1;
    transform: translateY(0);
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 12px;
}

.columns {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.content {
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 12px;
}

.hero {
    height: 350px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spacer {
    flex-grow: 1;
}

footer {
    height: 100px;
    background-color: black;
}

form {
    display: flex;
}

form fieldset {
    display: flex;
}

form fieldset label {}
