*{
    padding: 0;
    margin: 0;
    transition: all 0.5s;
}

html{
    height: 100%;
}

body{
    font-family: Helvetica, Verdana, sans-serif;
    padding: 0;
    margin: 0;
    height: 100%;
    background: #2892cf;
}

.centerbox{
    max-width: 800px;
    margin: 40px auto 0;
    display: block;
    padding: 16px;
}

.white{
    background-color: #fff;
}

.grayline{
    display: block;
    max-width: 800px;
    height: 4px;
    background: #cccccc;
    margin: 0 auto 86px;
}

img.profile{
    display: block;
    height: 256px;
    margin: 0 auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

p.mid-big{
    font-size: 120%;
}

p.big{
    font-size: 150%;
    vertical-align: baseline;
}

p.justified{
    text-align: justify;
    padding-right: 8px;
}

.floating-down{
    display: block;
    position: absolute;
    bottom: 60px;
    width: 800px;
    left: 50%;
    margin-left: -400px;
    text-align: center;
}

section.projects{
    position: absolute;
    width: 100%;
    top: 90%;
}

.floating-down a{
    color: #122b40;
    cursor: pointer;
    z-index: 0;
}

.projlist{
    list-style: none;
}

.projlist li a{
    color: black;
}

.projlist li h3{
    margin-top: 32px;
}

#deco{
    width: 100%;
    height: 240px;
    position: absolute;
    bottom: 40px;
}

.float-top-right{
    position: absolute;
    top: 4px;
    right: 12px;
    display: block;
}

.float-top-right a{
    color: #122b40;
    cursor: pointer;
}

.hpic-label{
    opacity: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(255,255,255,0.6);
    text-align: center;
}

.pic-cont:hover .hpic-label{
    opacity: 1;
}

@media only screen and (max-width: 620px){
    section.projects{
        position: static;
        display: block;
        width: 100%;
    }
    .floating-down{
        display: none;
    }
    #deco{
        display: none;
    }
}

