html {
    background-color: var(--accent-color);
}

.supercontainer {
    position: absolute;
    display: grid;
    grid-template-columns: auto auto;
    top: 0;
    left: 0;
    width: 100vw;
    height: fit-content;
    min-height: 100vh;
    /* transform: translateY(-50%); */
}

.supercontainer::after {
    content: "Powered by elemento.cloud";
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: var(--accent-color);
}

@media (orientation: portrait) {
    .supercontainer {
        grid-template-columns: auto;
    }
}

.container {
    /* display: table-cell; */
    width: 100%;
    height: 50vh;
    border: none;
    align-self: center;
    justify-self: center;
}
