
@font-face {  /* @font-face: ele permite que você utilize fontes que não estão instaladas no computador do usuário, bastando para isso manter o arquivo da fonte disponível no servidor, para que o navegador do usuário faça o download e utilize */
    font-family: 'fontexportada'; /* nome escolhido por mim para ser utilizada no projeto */
    src: url(../font/icones.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    margin: none;
    padding: none;
}

body {
    background: linear-gradient(rgb(22, 2, 59),black) fixed;
}

.cabecalho {
    display: flex; /*deixa que consiga mexer nos elementos dentro do container*/
    /* justify-content: space-evenly; separa o espaço de maneira identica */
    justify-content: space-between;  /*justify-content mexe nos elementos horizontalmente*/
    align-items: center; /* mexe nos elementos verticalmente, deixando em center ocupa apenas espaço necessario para mostrar conteudo */
    background-color: #150630;
    padding: 8px 18px; /*cima, lados*/
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16);
}

.main_bloco {
    width: 80vw;
    height: 50vw;
    background-color: rgb(129, 112, 112);
    display: flex;
    position: absolute;
    left: 10vw;
    top: 25vw;
    border-radius: 5px;
    align-items: center;
    justify-content: center;

}


.cabecalho_menu
{
 border: none;
 background-color: #150630;
}

.cabecalho_menu i::after {
    content: "\e9ba";
    font-size: 24px;
    font-family: 'fontexportada';
    color:white;
}

.cabecalho_whatsapp{
    border: none;
    background-color: #150630;
}

.cabecalho_whatsapp i::before {
    content: "\ea93";
    font-size: 24px;
    font-family: 'fontexportada';
    color:white;
}

.cabecalho_logo {
    width: 40px;
}


.menu_aba {
    width: 45%;
    height: 100vw;
    background-color: rgb(17, 6, 37);
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-top: 20px;
    color: white;
    border-radius: 0px 0px 5px 0px;
    font-size: 24px;
    font-family: fantasy;
    opacity: 80%;
    box-shadow: 0px 2px 5px black;
    position: absolute;
    left: -100vw; 
    transition: 2s;
}

.ativacao_menu {
    left: 0;
    transform: 2s;
}

.menu_paragrafo {
    padding: 5px;
}




.caixa {
    width: 100%;
    height: 700px;
    /*border: 1px solid black;*/
    position: flex;
    
}

.jhonata {
    justify-self: center;
    width: 250px;
}

.nuvem {
    width: 100px;
    position: absolute;
    top: 55%;
    animation: nuvem-animacao-nuvem1 200s infinite linear;
    opacity: 5%;
    left: -20;
}

.nuvem2 {
    width: 100px;
    position: absolute;
    top: 50%;
    animation: nuvem-animacao-nuvem2 120s infinite linear;
    opacity: 7%;
}

.nuvem3 {
    width: 100px;
    position: absolute;
    top: 55%;
    animation: nuvem-animacao-nuvem3 90s infinite linear;
    opacity: 1%;
}

.nuvem4 {
    width: 100px;
    position: absolute;
    top: 40%;
    animation: nuvem-animacao-nuvem4 200s infinite linear;
    opacity: 2%;
}

.nuvem5 {
    width: 100px;
    position: absolute;
    top: 45%;
    animation: nuvem-animacao-nuvem5 140s infinite linear;
    opacity: 3%;
}

.neblina {
    position: absolute;
    width: 80%;
    right: 0;
    opacity: 8%;
}

.neblina2 {
    opacity: 4%;
    width: 80%;
    right: 0;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.lua {
    width: 800px;
    position: absolute;
    left: 30%;
    opacity: 0.75%;
    
}

.placa {
    width: 250px;
    left: 0; 
    bottom: 0;
    position: absolute;
    opacity: 50%;
}

@keyframes nuvem-animacao-nuvem1 {
    from {
        left: 0;
        opacity: 5%;
    }
    to {
        left: 100%;
        opacity: 0%;
    }
}

@keyframes nuvem-animacao-nuvem2 {
    from {
        right: 0;
    }
    to {
        right: 100%;
    }
}

@keyframes nuvem-animacao-nuvem3 {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}

@keyframes nuvem-animacao-nuvem4 {
    from {
        right: 0;
    }
    to {
        right: 100%;
    }
}

@keyframes nuvem-animacao-nuvem5 {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}

