@charset "UTF-8";
/* CSS Document */

html{
    box-sizing: border-box;
	font-size: 62.5%;
}

*, *::before, *::after{
    box-sizing: inherit;
	margin: 0;
	padding: 0;
}

body{
	margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: black;
    font: 1.5em Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: darkgray;
}
header {
    width: 100%;
    top: 0px;
    padding: 1.5em;
    background: rgba(0, 0, 0, .5)
}

h1 {
    text-transform: uppercase;
    font-size: 2.5em;
    letter-spacing: 0.3em;
    margin-bottom: 1.7%;
    text-align: center;
    background-color: #340000;
}

img, p{
	display: flex;
	width: 100%;
	object-fit: fill;
	border-radius: .5rem;
}


.iso-logo {
    clip-path: circle(47%);
    position: relative;
    display: block;
    float: left;
    width: 7%;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style-type: none;
    line-height: 2.5rem;
}
nav ul li {  
    margin-left: 1.5em;
}

.menu-horizontal > li:hover{
    outline: none;
    color: white;
    border-bottom: 1px solid white;
}
.menu-horizontal >li >a{
    font-size: .85em;
    padding-bottom: .5em;
    text-decoration: none;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: darkgrey;
}

/*Galeria*/
.ppal {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}
.ppal figure, video{
  max-width: 800px;
  padding: 1rem;
}

figcaption{
    padding: 3rem 0 0 1rem;
}

footer{
    margin: 2% 0;
    letter-spacing: 2rem;
    text-align: center;
    border-style: ridge;
    border-color: gray;
    border-width: thin;
    padding: 30px 0px;
}

footer a{
    color: #FAEBD7;
    text-decoration: none;
}

footer:hover{
    background-color: maroon;
    border-style: none;
}

@media (max-width: 500px){
	
.menu-horizontal {
		display: block;
}
.iso-logo{
    width: 30%;
    clip-path: circle(70%);
	} 
          
    .bio{
    margin: 0 5% 2% 5%;
}
}