* {
	padding: 0;
	margin: 0;
}

body {
	background-image: url("../img/fondo2.jpg");
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 3em;
	padding-bottom: 3em;
}

#root {
	width: 1100px;
	margin: auto;
	background-color: white;
	display: grid;
	grid-template: 
	"header header header header" 250px
	"sidebar main main main" /
	325px auto;
	box-shadow: 0px 0px 79px 14px rgba(0,0,0,0.5);
}

header {
	grid-area: header;
	background-image: url("../img/fondoHeader.jpg");
	display: grid;
	grid-template: 
	"foto titulo titulo titulo rrss"
}

.foto {
	grid-area: foto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.titulo {
	grid-area: titulo;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.5em;
	color: #32C9DD;
}
h1 > span {
	color: white;
}

h5 {
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-size: 1.2em;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.575);
}

.rrss {
	grid-area: rrss;
	display: flex;
	gap:10px;
	flex-direction: column;
	justify-content: center;
}

.rrss > a > img {
	width: 30px;
	transition: all 0.3s;
}

.rrss img:hover {
	transform: translateY(-3px) scale(1.07);
}

header > .foto > img {
	width: 200px;
	height: 200px;
}

aside {
	grid-area: sidebar;
	background-color: #353C44;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 5em;
}

#about, #competencias, #contact, #idiomas {
	width: 85%;
	margin-top: 3em;
}

.pdd-10 {
	padding-left: 7px;
	padding-right: 5px;
}

h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #32C9DD;
	font-size: 1.3em;
	letter-spacing: 5px;
}

hr {
	margin-top: 0.3em;
	margin-bottom: 0.8em;
	border-color: #32C9DD;
	width: 80%;
}

#about, #competencias, #contact, #idiomas {
	color: white;
	font-family: 'Helvetica';
	font-weight: 300;
	text-align: justify;
	font-size: 0.9em;
}

#contact  a {
	color: white;
	text-decoration: none;
}
#contact a:hover {
	color: #32C9DD;
	font-style: italic;
}
#contact p {
	margin-bottom: 5px;
}

.bold {
	font-weight: 500;
}

#competencias li, #idiomas li {
	list-style-type: none;
	margin-bottom: 5px;
}

main {
	grid-area: main;
	background-color: white;
	box-shadow: inset 73px 0px 16px -70px rgba(54,60,68,0.5);
	display: flex;
	flex-direction: column;
	padding-left: 5em;
	padding-top: 0.2em;
	padding-bottom: 3.5em;
}

.hr-b {
	color: black;
	background-color: black;
	border-color: black;
	width: 10em;
}

.mt-2 {
	margin-top: 2em;
}

.h3-b {
	color: #363C44;
}

.mp-tl {
	margin-top: 1.5em;
	padding-left: 1em;
}

.h4-tit {
	font-family: 'Helvetica';
	font-weight: 600;
}

.lugar {
	font-family: 'Helvetica';
	color: #32C9DD;
	font-size: 0.8em;
	font-style: italic;
}

.fech {
	color: rgb(186, 186, 186);
	font-weight: 400;
	font-size: 0.9em;
}

#formacion h5 {
	color: #363C44;
}

.exp {
	display: grid;
	grid-template: 
	"año desc" auto/
	200px auto
	
}

#anio {	
	grid-area: año;
}
#desc {
	grid-area: desc;
}

.fech-for {
	font-family: 'Helvetica';
	color: #686a6c;
	font-size: 0.8em;
}

.m-tl {
	margin-top: 1.5em;
	margin-left: 0.5em;
	padding-left: 0.8em;
	border-left: 1px solid #32C9DD;	
}

#aficiones ul, #licencias ul {
	margin-top: 0.5em;
	list-style-type: none;
	color: #363C44;
	font-family: 'Helvetica';
	font-weight: 400;
	font-size: 0.8em;
}

#aficiones li {
	margin-bottom: 5px;
}

.p-add {
	color: #363C44;
	font-family: 'Helvetica';
	font-weight: 400;
	font-size: 0.8em;
}


