/******** GENERAL *******/

*{
    margin: 0px;
    padding: 0px;
}


html{
 
    box-sizing: border-box;
    font-family: Raleway, sans-serif;
}

a{
	color: inherit;
	text-decoration: inherit;
}

/******** NAVEGACIÓN ********/

nav{
	width: 100%;
	height: 80px;
	display: flex;
	position:fixed;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
    position: absolute;
    z-index: 2;
	color: white;
	 text-shadow: 0px 0px 15px rgba(0,0,0, 0.9);
}

nav h1{
	margin-left: 8%;
	font-size: 35px;
	font-weight: 400;
	text-shadow: 0px 0px 15px rgba(0,0,0, 0.1);
}

ul{
	display:flex;  
  	list-style:none;
	margin-right: 8%;
	height: 100%;
}

nav li{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	width: 110px;
	height: 100%;
	font-size: 22px;
	font-weight: 400;
	cursor: pointer;

	
}

.trabaj{
	transition: 0.2s background-color;

}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  /*background-color: #f9f9f9;*/
  min-width: 190px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  margin-left: 20px;
  z-index: 1;
}

.dropdown li{
	cursor: pointer;
}

.dropdown-content p {
  color: white;
  padding: 20px 16px;
  text-decoration: none;
  display: block;
}


.dropdown:hover .dropdown-content {
  display: block;

}

.dropdown-content p:hover {background-color: rgba(55,150,170,0.75)}

.dropdown:hover .trabaj  {
	background-color:rgba(55,150,170,0.4);
	color:#ADDAE4;
}

nav ul li a:hover {
	color: #ADDAE4;
}
  /********* CABECERA *********/

header{
    /*background-color: black;*/
    position: relative;
    height: 100vh;
    overflow: hidden;
 }

header #bg{
    position: absolute;
    height: 100vh;
	width: 100%;
    background-image: url("../img/fondomain.png");
    background-size:cover;
    background-repeat: no-repeat;
    background-position: 50%;
    overflow: hidden;
    background-attachment: fixed;
    
}


header h1{
	font-weight: 700;
	color: White;
	font-family: Raleway;
	margin-top: 15%;
	font-size: 90px;
	text-shadow: 0px 0px 15px rgba(0,0,0, 0.7);
	text-align: end;
	padding-right: 8%;
}


/***********INFO PERFIL*************/

#perfilContainer{
	width: 100%;
	height: 40vh;
	background-color: #1D1F1F;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);

	display: flex;
	filter: drop-shadow(0px 0px 20px rgba(0,0,0, 0.7));

	
}

#perfil{
	padding: 50px;
	margin-left: 150px;
	margin-right: 150px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	color: white;
}

#textoPerfil{
	width: 70%;
}

#textoPerfil h2{
	font-weight: 700;
	font-size: 25px;
}

#textoPerfil h3{
	font-weight: 400;
	margin: 3 0 9 0;
	font-size: 20px;
}

#textoPerfil p{
	font-weight: 200;
	font-size: 17px;
}

#perfil img{
	width: 200px;
    height: auto;
	
}

/************FOOTER************/




footer div{
    width: 100%;
    height: 200px;
    background-color:#0c0c0c;
    display:flex;
    justify-content: center;
    align-items:flex-end;
  
}

footer i{
    color: white;
    font-size: 35px;
    margin: 20px;
    margin-bottom: 30px;
    opacity: 0.7;
    transition:  opacity 0.2s, font-size 0.5s, color 0.2s;
    
}

footer i:hover{
    opacity: 1;
    font-size: 40px;
    color: #3796AA;
}
