html, body {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--on-background);
    min-height: calc(100vh - 20px * 2);
    padding: 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    gap: 12px;
}

@media screen and (max-width: 768px) {
    body {
        width: initial;
    }
}

section {
    display: none;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    flex-shrink: 1;
}

img {
    height: 200px;
    width: 200px;
}

.loader {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: var(--background);
    opacity: 1;
    transition: opacity .5s;
    top: 0;
    left: 0;
}

div[start] {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

section#giveaway {
    width: 100%;
}

hr {
    width: calc(100% + 2 * 12px);
    margin: 0;
    margin-left: -12px;
    border: none;
    border-top: 1px solid var(--outline);
}

span.money {
    font-size: 2em;
    font-weight: bold;
    background: var(--primary);
    color: var(--on-primary);
    padding: 4px 8px;
    border-radius: 12px;
    display: none;
}

.variant {
    color: var(--primary);
}

h1 {
    margin-block-start: 0.3em !important;
    margin-block-end: 0.3em !important;
}

p {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;

}

img {
    margin-bottom: 20px;
}