@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');



*{
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif;
    
}

.btn {
	height: 25px;
	width: 40px;
	border-radius: 60px;
	border: solid #03071E 2px;
	cursor: pointer;
  top:40px;
  right: 20px;
	position: relative;
}

.btn::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background-color: #03071E;
	top: 50%;
	left: 2.5px;
	transform: translateY(-50%);
	transition: left 0.7s;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.btn.active{
  border: solid #FF6D00 2px;
}

.btn.active:before {
	background-color: #ff6f00;
	left: 16px;
}

body.dark-mode {
  background-color: #03071e;
  
}

body{
  background-color: #ffffff;
}


body.dark-mode h1,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode .dark,
body.dark-mode p,
body.dark-mode .a-dark{
  color: rgb(255, 255, 255);
}



body.dark-mode .a-dark:before{
  background: rgb(255,109,0);
  background: linear-gradient(90deg, rgba(255,109,0,1) 0%, rgba(3,7,30,1) 82%);
}

html {
    scroll-behavior: smooth;
}

header {
  width: 100%;
  height: 100vh;
 
}


.nav-wrapper{
  width: 100%;
  display: flex;
  justify-content:space-around;
}

.logo{
  margin: 30px 0 0 60px;
  font-size: 40px;
  color:#FF6D00;
  text-decoration: none;
  letter-spacing: 4px;
}

.mobile-menu {
  cursor: pointer;
  display: none;
  
}

ul {
  width: 40%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 40px 0 0 400px;

  
}

ul a {
  
  font-size: 22px;
  text-decoration: none;
  position: relative;
  letter-spacing: 3px;
  color: #03071e;
}

nav a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgb(255,109,0);
  background: linear-gradient(90deg, rgba(255,109,0,1) 0%, rgba(255,255,255,1) 82%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

nav a:hover::before {
  transform: scaleX(1);
}

.box-header{
  margin-top: 6em;
  height: 70vh;
  background-image: url(Img/Header.png);
  background-size: 100% 70vh;
  background-position: 50% 70%;
  background-repeat: no-repeat;
 
}

.container {
  display: grid;
  place-content: center;
  justify-items: center;
  height: 60vh;
  gap:30px;
}

.container h1 {
 
  font-size: 4em;
  font-weight: normal;
  letter-spacing: 4px;
}

.container h2 {
  
  font-weight: inherit;
  margin: 0; 
  letter-spacing: 2px;
}

.container p {
  
  margin: 0; 
}


main{
  width: 100%;
  height: 200vh;
  
}


#experiencia{
  height: 100vh;
  display: flex;
  
 
}

.rotated{
  height: 15vh;
  transform: rotate(-90deg);
  position: relative;
  top: 13em;
 
  
  h2{
    font-size: 70px;
    color: #62636B;
  }
}

.container1{
  height: 80vh;
  position: relative;

 
  }

.p {
  font-size: 30px;
  
  width: 70%;
  margin-bottom: 2em;
  letter-spacing: 3px;
  
  
}

.experiencia{
  
  background-color: #c6c6c91c;
  border-radius: 10px;
  width: 70%;
  height: 20vh;
  margin-bottom: 2em;
  padding-top: .5em;
  border-left: 2px solid #FF6D00;
}

.experiencia h3{
  margin: .5em 0 .5em 1em;
  font-weight: normal;
  
}

.experiencia h4{
  margin: .5em 0 .8em 2em;
  font-weight: normal;
  
}

.experiencia p{
  margin: .5em 0 .5em 2em;
  
  font-size: 15px;
  
  width: 90%;
}

#formacao{
  height: 100vh;
  display: flex;
  
  
}

.formacao{
  background-color: #c6c6c91c;
  border-radius: 10px;
  width: 65%;
  height: 15vh;
  margin-bottom: 2em;
  border-left: 2px solid #FF6D00;
  padding-top: .3em;
}

.box{
  height: 90vh;
  width: 64%;
  left: 3.9em;
  position: relative;
  
}

.formacao h3{
  margin: .5em 0 .5em 1em;
  font-weight: normal;
 
  
}

.formacao h4{
  margin: .9em 0 0 2em;
  font-weight: normal;
 
  
}

.formacao p{
  margin: 0 0 0 2em;
  font-weight: lighter;
  
}

.rotated1{
  height: 15vh;
  transform: rotate(-90deg);
  position: relative;
  top: 15em;
  left: 2em;
  
  h2{
    font-size: 70px;
    color: #62636B;
  }
}

footer{
  width: 100%;
  height: 7vh;
  text-align: center;
  letter-spacing: 2px;
}


footer a{
  color: #ff6f00e3;
  text-decoration: none;
  font-size: 15px;
}

.back-to-top{
  
  position: fixed;
  bottom: 20px;
  right: 50px;
  padding-left: 5px;
  color: #ffff;
  display: none;
  font-size: 30px;
  cursor: pointer;
}


