:root {
    --fade-duration: 1s;
}

html{
    scrollbar-width: none;
}

html, body {
    overflow-x: hidden;
    -ms-overflow-style: none;
}
body{
    position: relative
}

body::-webkit-scrollbar, body::-webkit-scrollbar-button {
    display: none;
}

.introContainer {
    background: -webkit-gradient(linear, right top, left top, color-stop(10%, #00b2ff), to(#00569a));
    background: -o-linear-gradient(right, #00b2ff 10%, #00569a 100%);
    background: linear-gradient(270deg, #00b2ff 10%, #00569a 100%);
    height: 100vh;
}

#navbar {
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.scrolled {
    background-color: rgba(255, 255, 255, 0.75);
}

.scrollIndicator {
    height: 50px;
    width: 30px;
    border: white solid 3px;
    border-radius: 50px;
}

#scrollArrow {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-animation: moveDown 2s ease-out infinite;
    animation: moveDown 2s ease-out infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes moveDown {

    80% {
        -webkit-transform: translate(0, 100%);
        transform: translate(0, 100%);
    }
}

@keyframes moveDown {

    80% {
        -webkit-transform: translate(0, 100%);
        transform: translate(0, 100%);
    }
}

#greeting {
    background-color: #F55C38;
    min-height: 300px;
    margin-bottom: -4px;
}


.fadeIn.start {
    -webkit-animation: fade-in;
    animation: fade-in;
    -webkit-animation-duration: var(--fade-duration);
    animation-duration: var(--fade-duration);
}

.fadeIn {
    visibility: hidden;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}

body {
    overflow-x: hidden;
}


#findMe {
    background-color: white;
    margin-bottom: -3px;
    margin-top: 2px;
}

#portfolio {
    background-color: #069897;
}


#linkedin {
    background: -o-linear-gradient(150deg, #0072b1 10%, #00569a 100%);
    background: linear-gradient(300deg, #0072b1 10%, #00569a 100%);
}

#email {
    background: -o-linear-gradient(150deg, #eb5a4d 10%, #b44033 100%);
    background: linear-gradient(300deg, #eb5a4d 10%, #b44033 100%);
}

#github {
    background: -o-linear-gradient(150deg, #363638 10%, #000000 100%);
    background: linear-gradient(300deg, #363638 10%, #000000 100%);
}

.condenseRight {
    -webkit-animation: reveal 0.5s forwards;
    animation: reveal 0.5s forwards;
}

@-webkit-keyframes reveal {
    from {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes reveal {
    from {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

.line {
    width: 10%;
    height: 3px;
    background-color: silver;
    margin-top: 20px;
    margin-bottom: 20px;
}

.link {
    color: #4f2f9d;
    font-weight: 500;
}

.floaty-div:hover {
    -webkit-animation-name: floaty-animation;
    animation-name: floaty-animation;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}


@-webkit-keyframes floaty-animation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


@keyframes floaty-animation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}