html {
    position: relative;
}

body {
    margin-bottom: 100px;
    margin-top: 23px;
}

.jumbotron {
    height: 400px;
    background-image: url("../img/back.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: 0;
    color: #eaeaea;
    overflow: hidden;
}

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

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

hr {
    width: 250px;
    border-top: 3px solid #999999;
}

section {
    min-height: 500px;
}

.pKiri, .pKanan {
    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: #eeeeee;
}

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

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

.contact {
    min-height: 650px;
}


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

footer p {
    color: #aaaaaa;
    font-size: 1em;
}

footer p i {
    color: salmon;
}
