* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    width: 100dvw;
    height: 100dvh;
    margin: 0;
    padding: 0;
}

body {
    background-color: #7001D7;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    font-weight: 700;
    color: white;
}

main {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}

#bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

a {
    color: inherit;
}

img.qr {
    width: 100%;
    max-width: 512px;
    image-rendering: pixelated;
}

.short-url {
    display: flex;
    width: 100%;
    max-width: 256px;
    margin: auto;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}