@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400&display=swap');
:root {
    --cor-texto-menu: rgba(192, 181, 181, 0.7);
    --cor-texto-menu-hover: rgb(235, 125, 37);
    --cor-fundo-menu-principal: rgb(66, 24, 87, 0.945);
    --cor-fundo-texto: rgba(66, 24, 87, 0.618);
    --cor-scroll: rgba(235, 125, 37, 0.678);
    --cor-sombra-principal: rgba(235, 125, 37, 0.1),
        0 0.5rem 2rem rgba(235, 125, 37, 0.15);
    --cor-components: #271637;
    --cor-details: #a46801;
    --cor-background: rgba(66, 24, 87, 0.800);
}

* {
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    /*background: url('./assets/images/fundo.webp');
    backdrop-filter: blur(5px);*/
    background-repeat: no-repeat;
    background-size: 200%;
    margin: 0;
    font-size: 0.9rem;
}

a {
    color: #fff;
    text-decoration: none;
}

.root {
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
}

h1 {
    font-size: 40px;
}

.conteudo {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    padding: 10px 10px 10em 10px;
}

.badge {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    position: relative;
    padding: 15px 20px;
    background: var(--cor-background);
    color: #fff;
}

.footer {
    color: #889;
    position: absolute;
    padding: 10px 0 0 60%;
    font-size: 12px;
    text-transform: uppercase;
}








/* Firefox */
*{
    scrollbar-width: thin;
    scrollbar-color: #fff transparent;
}    

/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--cor-texto-menu); 
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--cor-fundo-menu-principal);
    border-radius: 15px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--cor-texto-menu-hover);
  }















@media screen and (max-width: 920px) {
    .conteudo {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    padding: 3em 0;
    }

    .badge {
        font-size: 1rem;
        position: relative;
        padding: 15px 20px;
        background: rgb(44, 62, 80, 0.9);
        color: #fff;
    }
    
    [img_easy] {
        width: 300px;
    }

    .footer {
        color: #fff;
        position: absolute;
        padding: 0 20% 0 30%;
        font-size: 8px;
        text-transform: uppercase;
        z-index: -1;
    }

    /* width */
    /* Chrome, Edge, and Safari */
    ::-webkit-scrollbar {
        width: 15px;
        height: 15px;
    }
    }

.badge > h2 {
    color: #ffa500;
}

.info {
    font-weight: bold;
    color: #fa6423;
}


.bg {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}