@charter "utf-8";

@font-face {
    font-family: 'source_sans_proregular';
    src: url('sourcesanspro-regular-webfont.eot');
    src: url('sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('sourcesanspro-regular-webfont.woff2') format('woff2'),
         url('sourcesanspro-regular-webfont.woff') format('woff'),
         url('sourcesanspro-regular-webfont.ttf') format('truetype'),
         url('sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*          BODY           */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    display:block;
    background-color: #202020;
    font-family: 'source_sans_proregular';
    max-width: 960px;
    align-content: center;
    height: auto;
    margin: auto;
}

.todo {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/*          TITULO           */

h1 {
    padding: 60px 20px 0px;
    text-align: center;
    color:#dedede;
    font-weight: 400;
}

h1:hover {
    color: #d5c3ee;
}

header {
    margin-bottom: 5px; 
    width:100%;
}

/*          MENU           */

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    z-index:1000;
    max-width:1000px;
    width:100%;
    margin-bottom: 1em;
}

nav ul {
    border: 3px solid #6b6b6b;
    list-style: none;   
    padding: 1em;
}

nav ul li {
    display:inline-block;
    position: relative;
    align-content: space-between;
    justify-content: space-between;
    justify-content: space-around;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    margin: 10px;
    color: #dedede;
}

nav ul li a:hover{
    color: #e4d1ff;
}

/*          CUERPO PRINCIPAL           */

section {
    display:flex;
    flex-flow: row;
    color: #e0e0e0;
}

.foto2{
    display:none;
}

#cuerpo {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 20px;
}

#columna {
    padding: 20px;
    margin: 0 20px;
    margin-top: 15px;
}

#columna ul li {
    list-style: none;
    border: 1px solid #d1b4fa;
    padding: 20px;
    width:280px;
    text-align: center;
}

#columna ul li a {
    text-decoration: none;
    color: #e4d1ff;
}

#columna ul li a:hover {
    text-decoration: line-through;
    color: #d5c3ee;
}

#fotos {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: row;
    justify-content: space-between;
}

#fotos img{
    height: 100%;
    width: auto;
}

#info{
    background-color: #d5c3ee;
    text-align: left;
    font-size: 13px;
    padding: 1em 1.5em;
}

/*          FOOTER           */

footer {
    color: #a99eb9;
    text-align: center;
    font-size: 11px;
    padding: 10px;
    margin: 0;
    border-top: 3px solid #6b6b6b;
}


@media (max-width:780px) {
    h1 {
    text-align: left;
    font-weight: 400;
    margin-bottom: 20px;
        margin-top: -10px;
    }
    
    .todo {
    display: flex;
    flex-direction: column;
}
    
    #columna{
        margin:auto;
    }
    
    .foto1{
    display:none;
    }
    
    #fotos {
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0.5em;
    }
        
    footer {
        font-size: 10px;
    }
    
}