body {
    background-color: #222;
    background-image: url("../img/black_denim.png");
    font-family: 'Montserrat';
}

#welcome {
    display: block;
    font: 150px 'Montserrat';
    width: 90vw;
    margin: 0 auto;
    margin-top: -10vh;
}

#iam,
#pimmoeskops {
    display: block;
    font: 100px 'Montserrat';
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    color: #FF7F00;
}

h1 {
    color: #FF7F00;
    text-align: center;
    font-size: 50px;
}

h2 {
    color: #FF7F00;
    text-align: center;
    font-size: 30px;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 2px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1) {
    stroke: #016381;
    animation-delay: -1;
}

.text-copy:nth-child(2) {
    stroke: #0393BF;
    animation-delay: -2s;
}

.text-copy:nth-child(3) {
    stroke: #1BC9FF;
    animation-delay: -3s;
}

.text-copy:nth-child(4) {
    stroke: #FF7F00;
    animation-delay: -4s;
}

.text-copy:nth-child(5) {
    stroke: #814101;
    animation-delay: -5s;
}

@keyframes stroke-offset {
    100% {
        stroke-dashoffset: -35%;
    }
}

.fa-gradient {
    color: #0393BF;
    background: -webkit-gradient(linear, left top, left bottom, from(#0393BF), to(#016381));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    color: #016381;
}

.container {
    height: 100vh;
    width: 100%;
    display: table;
}

.smallcontainer {
    height: 100%;
    width: 100%;
    display: table;
}

.center {
    height: 100%;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0px;
}

.scroll-down {
    opacity: 1;
    -webkit-transition: all .5s ease-in 3s;
    transition: all .5s ease-in 3s;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -16px;
    display: block;
    width: 32px;
    height: 32px;
    border: 2px solid #0393BF;
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.scroll-down:before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid #0393BF;
    border-width: 0px 0 2px 2px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}