html {
    position: relative;
}

body {
    margin-bottom: 120px;
    margin-top: 40px;
}


.jumbotron {
    height: 470px;
    background-image: url('../img/header-bg.png');
    background-attachment: fixed;
    background-size: 1350px;
    background-position: 0 -380px;
    color: #ffffff;
    overflow: hidden;
}

.jumbotron img {
    width: 200px;
    border: 5px solid  #bbbbbb;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);;
}

.jumbotron h1, .jumbotron p {
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

hr {
    width: 300px;
    border-top: 3px solid rgb(168, 168, 168); 
}

section {
    min-height: 600px;
}

.pKiri, .pKanan {
    margin-top: 20px;
    opacity: 0;
    transform: translate(-50px,0) rotate(15deg);
    transition: 1s;
}

.pKanan {
    transform: translate(50px, 0) rotate(-15deg);
}

.pKiri.pMuncul, .pKanan.pMuncul {
    opacity: 1;
    transform: translate(0,0 );
}

.portfolio {
    background-color: #eee;
}

.portfolio .thumbnail {
    opacity: 0;
    transform: translate(0, -40px);
    transition: .5s;
}

.portfolio .thumbnail.muncul {
    opacity: 1;
    transform: translate(0,0);
}

.contact {
    min-height: 800px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background-color: #333;
    padding-top: 30px;
}

footer p {
    color: #aaa;
    font-size: 1.1em;
}

footer p i {
    color: salmon;
}