/*
   nmgarciao@unal.edu.co
*/
@import url("gridlex.css");
@import url("f/font_style.css");

body {
    color: #1a1a1a;
    font: normal 300 16px / 1 sans-serif;
}
.titulo {
    position: fixed;
    top: 10%;
    right: 20px;
    width: 210px;
    padding: 10px;
    background: #FFF;
    color: blue;
    letter-spacing: 0.3em;
    z-index: 100;
}
.titulo span {
    animation: title 2s ease-in 0s infinite forwards;
}
.titulo span:nth-child(even) {
    display: block;
    animation: title 2s ease-in 1s infinite forwards;
}
.titulo span:nth-child(2) {
    animation-delay: 3s;
}
.titulo span:nth-child(5) {
    animation-delay: 5s;
}
.titulo a:hover {
    font-size: 1.1em;
    font-weight: bold;
    color: purple;
}
@keyframes title {
    to {
        opacity: 0;
        font-size: 0.85em;
        letter-spacing: 0.015em;
    }
}
span {
    font-size: 0.8em;
    letter-spacing: normal;
    display: block;
}
.info {
    font-size: 1.5em;
    padding: 1em 0.3em 0.3em;
    position: sticky;
    top: 0;
    background: #f2f2f2;
    color: #cfcfcf;
}
.info a {
    color: red;
    color: #ff00a3;
}
.content {
    margin: 0 auto;
    padding: 0 2%;
    max-width: 1200px;
}
.other {
    display: flex;
    flex-wrap: wrap;
    width: 60vw;
}
.other img {
    cursor: pointer;

    max-width: 30%;

    -webkit-transition: 0.22s linear all;
    -moz-transition: 0.22s linear all;
    -o-transition: 0.22s linear all;
    -ms-transition: 0.22s linear all;
    transition: 0.22s linear all
}
.visto {
    opacity: .5;
    border: 4px solid blue;
}
.other img:hover {
    transform: scale(0.8);
    border: 4px solid #ccc;
}
.big {
    max-height: 80vh;
    transition: transform 0.6s ease;
}
.images {
    position: relative;
}
.close {
    display: none;
    position: absolute;
    z-index: 101;
    top: 10vh;
    right: 24%;
    background: red;
    color: #ccc;
    padding: .4em .85em;
    border-radius: 4px;
    cursor: pointer;
    mix-blend-mode: luminosity;
}
.close:hover {
    border: 1px solid blue;
    color: #fff;
}
.a {
    position: relative;
    display: inline-block !important;
}
.imgmoving .close {
    display: block;
}
.gifmethepower img {
    max-width: 400px;
}
.gifmethepower span {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.gifmethepower .close {
    display: none;
}
@media screen and(orientation: portrait) {}
/*480*/
@media screen and(min-width: 30em) {
    body {
        text-rendering: optimizeSpeed;
    }
}
/*768*/
@media screen and(min-width: 48em) {}
/*960*/
@media screen and(min-width: 60em) {}
/*1240*/
@media screen and(min-width: 76em) {}
/*1440*/
@media screen and(min-width: 90em) {}
/*1280*/
@media screen and(max-width: 80em) {
    .titulo{
        width: 100%;
        position: initial;
        padding: 10vh;
    }
}
/*1216*/
@media screen and(max-width: 76em) {
}
/*960*/
@media screen and(max-width: 60em) {
    video {
        max-width: 100%;
    }
    img {
        border: 0;
        max-width: 80%;
        margin: 0 auto;
    }
    
}
/*640*/
@media screen and(max-width: 40em) {}