
/* CSS reset */
body{
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
}
#menu{
    padding-top: 3vh;
}
.fade{
    position: relative;
    text-align: center;
}
.h{
    visibility: hidden;
    position: relative;
    margin:auto;
    bottom: 60%;
    cursor:pointer;
} 
.author{
    font-family: "Chivo";
    font-size: 13px;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 400;
    font-style: normal;
    color: #aaa;
}
@media screen and (min-width: 769px){
    .fade:hover img{
        cursor: pointer;
        opacity: 0 ;
        transition: .3s;        
    } 
    .fade:hover :not(img){
        visibility: visible;
        transition: .3s;
    }  
}
h3{    
    font-family: "Chivo";
    font-size: 30px;
    line-height: 1.2em;
    letter-spacing: .02em;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    text-decoration: none;
}
#contents {
    padding-top: 1.8vw;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-row-gap: 30px;
    text-align: center;
}

#contents > a > img{
    position: relative;
    width:100% ;
    height: auto;
    -webkit-animation: fadein .4s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein .4s; /* Firefox < 16 */
    -ms-animation: fadein .4s; /* Internet Explorer */
    -o-animation: fadein .4s; /* Opera < 12.1 */
    animation: fadein .4s;
}

#g{
    font-family: 'Chivo', sans-serif;
    font-size: 24px;
    line-height: 1.2em;
    text-transform: capitalize;
    letter-spacing: 0em;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
    display:inline;
    margin: 0;
    transform: translateY(-50%);
    z-index: 1;   
}
@media screen and (max-width: 768px) {

    #contents{
        grid-template-columns: 50% 50% ;
    }
    #g{
        font-size:20px; 
    }
}
.all{
    padding-top: 2vw; 
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 4vw;
    height: 100%;  
     
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.items > * {
    display: inline;
    font-family: "Chivo";
    font-size: 14px;
    text-transform: none;
    letter-spacing: .02em;
    font-weight: 400;
    font-style: normal;
    line-height: 1em;
    color: #aaa;
    padding-left: 10px;
    }
a{
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.items:last-child{
    padding-left: 0;
    padding-right: 1vw;

}
a:hover {
    color: #333;
    cursor: pointer;
}
.items{
    float: right;
}
.items .icon {
    color : #333;
    display: none;
    z-index :1;
    right: 5vw;
    font-size: 24px;
    margin: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: fixed;

}
@media (min-width: 768px) and (max-width: 1024px) {
    .all{
        padding-top: 1vw;
    }
}

@media screen and (max-width: 768px) {
    .items a {
        display: none;}
    .items a.icon {
        float: right;
        display: block;
    }
    .all{
        padding-top: 1vw;
    }
    #g{
        position: fixed; 

    }
    #menu{
        padding-top: 6vw;
    }
    #contents{
        padding-top:6vw;
    }
    #linkedInLogo{
        visibility: hidden;
    }
    
  }

.selected {
    color: #333;
}

#linkedInLogo{
    position: fixed;
    width:32px;
    top: 90%;
    left: 95%;
    opacity: 0.9;
}

