/* Estilo para o corpo da página */

* {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    font-size: 1vw;
}

@font-face {
    font-family: 'fon01_200';
    src: url('./KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
}

h1 {
    font-size: 2vw;
    margin-right: 1vw;
    cursor: pointer;
}

nav {
    display: flex;
    flex-direction: row;
    list-style: none;

    font-size: 1.2vw;
}

ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
}

li a {
    margin: 0vw 1vw;
    cursor: pointer;
    color: white;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
}

header {
    background-color: #202c33;
    color: #fff;
    padding: 0.5vw 1.5vw;
    backdrop-filter: blur(18px);
    webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
}

.homer {
    padding: 0 1.5vw;
}

.opts {
    display: flex;
    justify-content: center;
}

.opts select,
.opts i {
    margin-left: 1vw;
}

.novisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.mess {
    width: 50vw;
    background: aqua;
    height: 49.7vw;
    left: 110vw;
    position: absolute;
}

.mess_1 {
    height: 50vh;
    width: 100%;
    background-color: red;
}

.mess_1_on {
    left: 50vw;
    transition: 1s;
}

.render {
    width: 100%;
}


/*loading*/
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    z-index: 998;
    opacity: 1;
    transition: opacity 0.5s ease;
}

button {
    background-color: dodgerblue;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}