body {
    margin: 0;
    font-family: "Inter", sans-serif;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;
}

.jogo {
    display: none;
}

a-scene {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

a-scene canvas {
    z-index: 0;
}

#game {
    width: 90%;
    height: 90%;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#prod {
    display: flex;
    justify-content: space-between;
}

#prod p {
    font-weight: bold;
    color: white;
    font-size: 1.8rem;
    font-family: "Inter", sans-serif;
}

#prod p:first-child {
    text-transform: uppercase;
}

#controls {
    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 9999999999;
    
    height: 30%;
}

#botsMaisMenos {
    width: 10%;
}

#botsJogabilidade {
    width: 25%;
}

#botsMaisMenos, #botsJogabilidade {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
}

#menos,
#mais {
    width: 100%;
    height: 45%;

    font-size: 2.5rem;
    color: white;

    border-radius: .5rem;
    border: none;

    font-family: "Inter", sans-serif;
}

#menos {
    transition: 0.3s;
    background-color: #A70003;
}

#menos:hover {
    background-color: #5a0002;
    cursor: pointer;
}

#mais {
    transition: 0.3s;
    background-color: #166C00;
}

#mais:hover {
    background-color: #0f4700;
    cursor: pointer;
}

#salvarLista:hover{
    background-color: #197200;
    cursor: pointer;
}

#salvarLista {
    width: 100%;
    height: 45%;

    font-size: 1.2rem;
    color: white;
    font-weight: bold;

    border-radius: .5rem;
    border: none;

    background-color: #27C500;
    transition: 0.3s;
}

#none {
    display: block;
}

#block {
    display: none;
}

.a-enter-vr-button {
    display: none !important;
}

a-scene {
    pointer-events: none !important;
}

#mindar-ui-scanning, #mindar-ui-loading {
    display: none !important;
}

.modal {
    background-color: rgba(0, 0, 0, 0.8);

    color: #fff;
    text-align: center;

    padding: 20px;
    border-radius: 10px;

    width: 55%;
    height:fit-content;
}
