@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

body{
    background: #191919;
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar {
    width: 5px;
}
  
body::-webkit-scrollbar-track {
    background: none;
}
  
body::-webkit-scrollbar-thumb {
    background-color: #4185f2;
}

.div-eu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5%;
    align-items: center;
}

.div-sobre-mim{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.div-texto-sobre-mim{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 1em;
}
.div-contatos{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
p{
    padding-left: 10%;
    padding-right: 10%;
    text-align: justify;
}

.icone{
    width: 100%;
    padding-right: 2em;
}

.img-eu{
    border: 0.2em solid #4185f2;
    border-radius: 20%;
    width: 35%;
    max-width: 350px;
}


.titulo{
    font-size: 50px;
    font-style: bold;
    font-weight: 700;
    line-height: normal;
    font-family: 'Bungee';
}

.subtitulo{
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.texto{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cargo{
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: 'Bungee';
    align-items: center;
    justify-content: center;
}

.div-projetos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
}

.div-techs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.texto-projeto{
    color:black;
}

.div-linguagens{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.card-linguagem{
    margin: 5%; 
    width: 300px;
    height: 450px;
}

.div-whats{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 15px;
}

.div-center{
    display: flex;
    flex-direction: initial;
    align-items: center;
    justify-content: center;
}

.texto-trocar-ideia{
    font-size: 30px;
    font-style: bold;
    font-weight: 700;
    line-height: normal;
    font-family: 'Bungee';
}

.div-tech-front{
    display: flex;
    align-items: center;
    justify-content: center;
}
.div-techs-front{
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}
.div-techs-front img{
    float: right;
}

.div-techs-back{
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.div-techs-back img{
    float: right;
}

.techs-back{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.div-tech-back{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.div-tech-experiencias{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.techs-experiencias{
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.center{
    align-items: center;
    justify-content: center;
}

@keyframes andarFront {
    from{
      transform: translateX(0);
    }
    
    to{
      transform: translateX(-940px);
    }
  }
  
  @keyframes andarExperiencia {
    from{
      transform: translateX(0);
    }
    
    to{
      transform: translateX(-970px);
    }
  }

  @keyframes andarBack {
    from{
      transform: translateX(0);
    }
    
    to{
      transform: translateX(-840px);
    }
  }
  @keyframes andarBackLine2 {
    from{
      transform: translateX(0);
    }
    
    to{
      transform: translateX(-540px);
    }
  }

  .div-techs-back div {
    animation: andarBack 7s linear infinite;
  }

  .techs-experiencias img{
    animation: andarExperiencia 7s linear infinite;
  }
  .div-techs-front img {
    animation: andarFront 7s linear infinite; /* Aplicar a animação às imagens */
  }

@media (max-width: 500px) {
    body{
        margin-top: 30px;
    }
  
    @keyframes andar {
        from {
          transform: translateX(0);
        }
        
        to {
          transform: translateX(-1180px);
        }
      }

    .div-whats{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 5px;
    }

    .texto-trocar-ideia{
        font-size: 20px;
        font-style: bold;
        font-weight: 700;
        line-height: normal;
        font-family: 'Bungee';
    }

    .div-center{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card-linguagem{
        margin: 5%; 
        width: 300px;
        height: 450px;
    }

    .titulo{
        font-size: 40px;
        font-style: bold;
        font-weight: 700;
        line-height: normal;
        font-family: 'Bungee';
    }
    .cargo{
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        font-family: 'Bungee';
        align-items: center;
        justify-content: center;
    }  
}

@media (min-width: 768px){
    .card-linguagem{
        width: 300px;
        height: 450px;
    }

    .div-linguagens{
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
    }
}

@media (min-width: 1000px) {
    .div-linguagens{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        place-items: center;
    }
}

.js .anime {
	opacity: 0;
	transform: translate3D(-50px, 0px, 0px);
}

.js .anime-init {
	opacity: 1;
	transform: translate3D(0px, 0px, 0px);
	transition: .3s all ease;
}

.box {
	width: 260px;
	height: 100px;
	border-radius: 5px;
	margin: 0 auto 20px auto;
}

.box p {
	padding-top: 100px;
	font-size: 24px;
	color: white;
	font-family: monaco;
}


#mouse {
	display: block;
	width: 22px;
	height: 40px;
	border-radius: 20px;
	border: 4px solid #8844EE;
	text-align: center;
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 20px;
	margin: 0 auto;
}

#mouse::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 8px;
	position: relative;
	border-radius: 4px;
	background: #8844EE;
	animation-name: mouse;
  animation-duration: .7s;
	animation-iteration-count: infinite;
}

@keyframes mouse {
	from {
		top: 0px;
	}
  to {
		top: 6px;
	}
}



#origamid {
	font-family: monaco;
	text-decoration: none;
	color: #84E;
	display: inline-block;
}

#origamid::after, #origamid::before {
	content: '';
	display: block;
	background: #84E;
	width: 0;
	height: 2px;
	border-radius: 4px;
	margin: 6px auto 6px auto;
	transition: all .2s ease;
}

#origamid:hover::after, #origamid:hover::before {
	width: 100%;
}
