/* Usado para importar regras de estilo de outras folhas de estilo. */
@import"https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400&display=swap";
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Dongle&display=swap');
* { /* Este seletor escolhe todos os elementos do documento e redefine
todas as configurações do navegador. */
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
/*font-family: “Source Sans Pro”, sans-serif;*/
font-family: 'Bangers', cursive;
color:aliceblue;
font-weight: 300;
vertical-align: baseline;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
body {
    background-color:#091c25;  
    box-sizing: border-box;
      
}

header {
    
    width: 100%;
    height: 70vh;
    overflow: hidden;    
    justify-content: space-evenly;   
}

.div-menu {
    padding-top: 0;
    position:fixed;
    width: 100%;
    height: 150px;
    /*background: #39c;*/
    background-color: rgb(24, 26, 25);
    opacity: 0.3;

    --blur: 0px;
    --e-transform-transition-duration: 100ms;
    margin-top: 0px;
    margin-bottom: 0px;
    top: 0px;
    filter: blur(var(--blur));
}

.menu {
    display: flex;    
    justify-content: flex-end;
    flex-direction: row; 
}

.image-logo {
    padding-top: 0;
    position: fixed;
    width: 170px;    
}

.animacao {     
    align-items: center;
    justify-content: center;
    min-height: 100vh;    
}

.container {
    position: absolute;
    height: 300px;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    top: 50%;
    left: 50%;
    z-index: 1;
    opacity: 0.8;
}

.container .estatico {    
    color:#fff;
    font-size: 60px;
    font-weight: 400;
    text-align: center;
    letter-spacing: -2px;
    display: inline-block;
    white-space: nowrap;
}
.container .estatico span {
    font-family: “Source Sans Pro”, sans-serif;
    display: inline-block;
  }

.container .dinamico{
    margin-left:15px;
    line-height: 70px;
    height: 70px;
    overflow:hidden;
    display: inline-block;
}  

.dinamico li {
    color:#fc6d6d;
    list-style: none;
    font-size: 60px;
    font-weight: 500;
    left: 0;
    position: relative;
    top:0;
    animation:slide 6s steps(4) infinite;
    display: inline-block;
}

@keyframes slide {
    100%{
        top: -360px;
    }
}

.dinamico li span::after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    left:0;
    border-left: 2px solid #fc6d6d;
    animation:typing 1.5s steps(10) infinite;    
}

.dinamico li span {
    position: relative;
    font-family: “Source Sans Pro”, sans-serif;
    color:#fc6d6d;
}

@keyframes typing {
    100%{
        left: 100%;
        margin: 0 -35px 0 35px;
    }
}


header video{ 
    position: static;   
    left: 0;
    object-fit: cover;
    width: 100%;
    padding-top: 40px;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    margin-top: 90px;
    margin-bottom: 0;    
}

header nav ul {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 70px 50px 0 0; 
}

header nav ul li a{
    margin: 0px 15px;
    color: #39c; 
}

header nav ul li a{
    margin: 0px 15px;
    color: rgb(255, 255, 255);
    font-size: large;; 
}

a:hover{
    color: rgb(255, 255, 255);
    font-size: 30px;    
}

.container-main {
    color:aliceblue;
    font-size: 30px;
    padding: 30px 80px 50px 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;    
}
.skills {
    margin-left: 100px;    
    width: 50%;
    align-items: center;
}
.skills li:hover {
    color:#fc6d6d;
    font-size: 40px;
    padding: 10px;
}

.about {
    margin-left: 25%;    
    width: 50%;
}

.container-projetos {
    margin: 16px;
    align-items: center;
}
.container-projetos h1 {    
    display: flex;
    justify-content: center;
    font-size: 90px;
    font-weight: 600;
    font-family: 'Bangers', cursive;
    color:aliceblue;
}

.container-projetos p {  
    margin-top: 20px;  
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Bangers', cursive;
    color:aliceblue;
}

.container-projetos .projetos {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    justify-content: space-evenly;

}

.container-projetos .projeto{
    position: relative;
    padding: 30px 50px 50px 80px;
    display: inline-flex;
    margin:0 50px 0 50px;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    padding: 0 10px 0 10px;
    background: url("/img/projeto.jpg") no-repeat center center;
    background-size: cover;
    border: solid #091c25 5px;
}



 .container-projetos .projeto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

.container-projetos .projeto:hover::before{
    background: #0c232d;
    opacity: 0.8;
    
}

  .container-projetos .projeto:hover::after {
    content: "Texto por cima da imagem";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bangers', cursive;
    color:aliceblue;    
    z-index: 2;
  }
  
.container-projetos button {    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 30px;
    border-radius: 2px;
    font-family: 'Bangers', cursive;
    color: #0c232d;    
}

.container-video {
    width: 100%;
    height: 100%;
}

.container-video video {
    position: static;   
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 60%;    
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    
    margin-bottom: 0; 
}

.container-video .video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;    
  }

.container-video .video:hover::before{
    background: #0c232d;
    opacity: 0.8;    
}

 .container-contato { 
    padding-top: 30px;   
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #0c232d;
 }

 .container-contato .contato {
    display: flex;
    justify-content: center;
 }

 .container-contato {
    color:aliceblue;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
 }
 #frmInscricao {
    
    font-size: larger;
 }
 .container-contato .contato .article h1 {  
    font-size: 30px;
    margin-bottom: 10px;
 }

 #btnEnviar {
    width: 100px;
    height: 50px;
    font-size: 30px;
    border-radius: 2px;
    font-family: 'Bangers', cursive;
    color:rgb(35, 45, 55);
 }
 .container-contato .meu-contato {
    
    font-size: 40px;
    font-weight: 500;
 }

 .container-contato .meu-contato ul {
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
 }

footer {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    font-family: 'Bangers', cursive;
    color:aliceblue;
}
  
footer strong {
    font-size: 20px;
}

@media screen and (min-width: 360px) and (max-width: 740px) {

    header video{
        background: url("/img/media-screen/header-logo.jpg");
        width: 100%;
    }
    
}
  