body {
    font-family: 'Oxygen', sans-serif;
    color: #888888;
}

a {
    text-decoration: none;
    color: #B49B78;
}

a:hover {
    color: #333;
}

h2 {
    font-family: 'Syne', sans-serif;
    color: #333;
}

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-primary {
    background-color: #B49B78 !important;
}

.line-left{
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
}

.line-left img{
    position: absolute;
    bottom: 50px;
    left: -35px;
    opacity: 0;
}

body.page-loaded .line-left img{
    left: -35px;
    opacity: 1;
}

.mood-img {
    width: 66%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    background-position: center;
    opacity: 0;

    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    transition-delay: 1s;
}

body.page-loaded .mood-img {
    opacity: 1;
    background-position: center left;
}

.skew-after::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -1px;
    bottom: 3px;
    background-image: url(img/skew.svg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: -2px;
}