body {
    margin: 0;
    font-family: Grandstander;
}

#wrapper {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#gui {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (orientation: portrait) {
    #no-portrait {
        user-select: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #0008;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #no-portrait .message {
        color: var(--color-white);
        font-size: 50px;
        text-align: center;
    }
}

@media screen and (orientation: landscape) {
    #no-portrait {
        display: none
    }
}

#gui #cards {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#gui #overlay {
    user-select: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}