html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    z-index: -1;
}

.dogelore {
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100dvh;
    background: url("dogelore.gif") center center no-repeat;
    background-size: contain;
}

