/****

	Indice

	1. CSS Normalize / Reset
	2. Fuente
	3. En general
	4. Elementos comunes
	5. Clases enlaces
    5.5 FANCY BOX
	6. CSS3 Media Queries

 */



/* *********************************************************************************************************************
 * 1. CSS Normalize / Reset
 *
 * Differences from default
 *      reset fieldset -> border / padding / margin : 0
 */

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:0;padding:0;margin:0}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}



/****
 * 2. Font-face
 */



/****
 * 3. En general
 */
body {
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
}

/*
 * Make box model correct -> padding, border = inner
 */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;
}

/*
 * Seleccion de texto en color
 */
::-moz-selection {
	background: #82c4dc;
	color: #fff;
}

::selection {
	background: #82c4dc;
	color: #fff;
}

/*
 * Placeholder
 */
:-moz-placeholder {
	color: #F00;
}
::-webkit-input-placeholder {
	color: #F00;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #aaa;
	margin: 1em 0;
	padding: 0;
}

img {
	vertical-align: middle;
}

textarea {
	resize: vertical;
}







/****
 * 4. Elementos comunes
 */
body {
	background: #fff;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 50px;
	line-height: 65px;
	color: #b0b0b0;
	letter-spacing: -4px;
	word-spacing: 10px;
    }

a {
	color: #b0b0b0;
	text-decoration: none;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-ms-transition-duration: .5s;
	-o-transition-duration: .5s;
	transition-duration: .5s;
}

a:hover, .active a {
	color: #777;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline;
}

.izquierda {
    float:left;
}

.derecha {
    float:right;
}

.titulo_link {
    padding-right: 20px;
    background-color: #f2f2f2;
    }



/****
 * 5. Clases enlaces
 */
section {
	padding: 100px 0;
	margin: 0 auto;
	max-width: 1000px;
}

.high {
	color: #777;
}

.link_idioma { color: #ff6868; }
.link_pfc { color: #cad6e1; }
.link_proyectos { color: #c5376d; }


.link_blog { color: #000000; }
.link_modelado { color: #82c4dc; }
.link_render { color: #fcc024; }
.link_parametric { color: #801255; }
.link_bim { color: #00b2c1; }
.link_cv { color: #3c5a98 ; }
.link_portfolio { color: #006599; }



/****
 * 5.5 FANCY BOX
 */
<!-- #cajas {
	margin: 0;
	padding: 0;	
}
-->

.miniaturasIMG {
    position: relative;
	overflow: hidden;
	margin: 15px 0px;
	cursor: crosshair;
    width: 100%;
    }

.listafotos {
    display: block;
    margin-bottom: 15px;
    } 


/****
 * 6. CSS3 Media Queries
 */
@media all and (max-width: 1024px) {
	body {
		margin: 0 100px;
	}
}

@media all and (max-width: 768px) {
	section {
		padding: 75px 0;
	}
}

@media all and (max-width: 480px) {
	body {
		margin: 0 50px;
	}

	section {
		padding: 75px 0;
	}
}

@media all and (max-width: 320px) {
	body {
		margin: 0 25px;
		font-size: 40px;
		letter-spacing: -4px;
		line-height: 55px;
	}

	section {
		padding: 25px 0;
	}
}