body {
    margin: 0;
    border: none;
    font-family: sans-serif;
    font-size: 10pt;
    text-align: justify;
}

model-viewer {
    margin: 0;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    z-index: 1;
}

#abrirModalBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
}

#fecharModalBtn {
    border: 0px;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#meuModal {
    width: 80%;
    height: min-content;
    background-color: #fff;
    border-radius: 20px;
    border: 0px;
    padding: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.botaoModal {
    text-align: right;
}