@import "https://fonts.googleapis.com/css?family=Work+Sans:400,700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap";
html,
body {
    line-height: 1.5;
    height: 100%;
    font-family:
        Work Sans,
        sans-serif;
}

.top {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.top #particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #fed96f;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
}
.top .container {
    transform: translateY(-15vh);
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: auto !important;
}

.font-marker {
    font-family:
        Permanent Marker,
        Work Sans,
        sans-serif;
}

.top .container h1 {
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
    border-bottom-color: rgba(0, 0, 0, 0.35);
    display: inline-block;
    font-size: 8vw;
}
.top .intro-text {
    transform: translateY(-15vh);
    text-align: center;
    font-size: 6vw;
}

.top .scroll-down {
    height: 80px;
    width: 110px;
    display: block;
    position: absolute;
    bottom: 0px;
    right: 2%;
    background-color: #222222;
    text-align: center;
    z-index: 6;
}

.top .scroll-down .fas {
    color: #ffffff;
    padding-right: 2px;
    padding-top: 20px;
    animation-name: wiggle;
    animation-duration: 1.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
}
.top .scroll-down:hover .fas {
    padding-top: 25px;
}

@media (max-width: 768px) {
    .top .scroll-down {
        width: 100%;
        right: 0px;
    }
    .top .container h1 {
        font-size: clamp(3rem, 5vw, 6rem);
    }

    .top .intro-text {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
}

.typed-cursor {
    opacity: 1;
    z-index: 5;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hide-scroll-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scroll-bar::-webkit-scrollbar {
    display: none;
}
