html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    transition: opacity 1s ease-in-out;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.muh-bg {
    overflow: hidden;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background: url(/img/background.jpg) no-repeat;
    background-size: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}


@media (orientation: landscape) {
    body {
        font-size: 2.8vh !important;
    }
}

.muh-panel-splash {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding-top: 1em;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
}

.muh-panel-splash.reveal {
    opacity: 1 !important;
}

.muh-glass {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(2em);
}

.muh-glass.muh-reveal {
    opacity: 1;
    z-index: 2000;
}

.muh-glass.muh-hide {
    opacity: 0;
}


.muh-absolute {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

#muh-confetti {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.muh-reveal-instant {
    display: block !important;
}

.muh-panel-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

* {
    user-select: none;
}


.muh-loader {
    position: absolute;
    left: 50%;
    margin-left: -8em;
    top: 50%;
    margin-top: -8em;
    z-index: 3000;
    display: none;
}

.muh-loader .text {
    position: absolute;
    width: 10.75em;
    text-align: center;
    line-height: 10.75em;
    color: #607D8B;
    font-size: 1.5em;
}

.muh-loader .spinner {
    width: 16em;
    height: 16em;
    border: 1em solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    box-sizing: border-box;
    animation: muh-loader-rotation 1.2s linear infinite;
}

.muh-loader .spinner::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18.5em;
    height: 18.5em;
    border-radius: 50%;
    border: 1em solid transparent;
    border-bottom-color: #E91E63;
}

@keyframes muh-loader-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#muh-canvas {
    display: none;
}

.muh-bg-softener {
    left: 0;
    right: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    backdrop-filter: blur(3em);
}