h2 {
    font-size: 1em !important;
}

#gameBody {
    font-family: 'Mulish', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.78vh;
    margin: 2.54vh 9.13vw;
}

#main-item {
    position: relative;
    overflow: visible;
    align-content: center;
    text-align: center;
}

.antiBurnInMove::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/themes/default_image/MATCH-MACHINE-LOGO.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: antiBurnInMove 10s infinite ease-in-out;
    will-change: transform;
}

/* Anti burn animation */
@keyframes antiBurnInMove {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(3px, 2px); }
    50%  { transform: translate(0, 4px); }
    75%  { transform: translate(-3px, 2px) scale(1.01); }
    100% { transform: translate(0, 0); }
}

.photoContainer {
    width: 100%;
    height: 100%;
    text-transform: lowercase;
}

.container {
    width: 24.71vw;
    height: 44.07vh;
    box-sizing: border-box;
    padding: 20px;
}

.options-container,
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}

.textContainer {
    font-size: 4rem;
    text-transform: lowercase !important;
}

.titleContainer {
    font-size: 2rem;
    text-transform: lowercase !important;
}

div {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

input {
    width: 14vw;
    height: 50px;
    font-size: 1.2rem;
}

button {
    width: 250px;
    height: 250px;
}

#MMLogin {
    width: 14vw;
    height: 100%;
    font-size: 1.3rem;
}

#MMStartContainer {
    display: none;
    font-size: 2rem;
    text-transform: lowercase;
}

#MM,
#MMName,
#MMWaiting {
    display: block;
    margin: 0 auto;
}

#MMLoginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#MMLoginError {
    color: red;
    font-size: 1.2rem;
    text-align: center;
}

.options {
    display: flex;
    gap: 3.8vw;
}

html,
body {
    touch-action: none;
    /* Prevent zoom gestures */
}
