* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: #050505;
    color:#f5f5f5;
    line-height: 125%;
}

/* default styling for links + text decor */
a {
    text-decoration: none;
    color:#EF3E3E;
    transition: 0.2s;
}
a:hover {
    color:#f5f5f5;
}
.text-decor {
    color:#3370ff;
}


/* all things related to the video */
.video-items {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: none;   
}
#actual-video {
    opacity: 1.0;
}
#gradient {
    position: absolute;
    background-image: linear-gradient(#3370ff, #ef3e3e);
    opacity: 0.1;
}

/* header */
#header {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    font-family: "Century Gothic", sans-serif;
    font-size: 300%;
    text-decoration: underline;
    /* this part makes the text unselectable */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* chevron (now used for "scroll down") */
#chevron {
    position: fixed;
    bottom: 5%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    font-family: "Century Gothic", sans-serif;
    font-size: 125%;
    opacity: 0;
    transition: 0.75s;
}
#chevron.visible {
    opacity: 1;
}

/* single container below video, and the components within */
#below-vid {
    position: absolute;
    top: 100%;
    font-size: 150%;
    text-align: justify;
}
.bv-component {
    width: 50%;
    min-width: 600px;
    margin: 75px;
    margin-left: auto;
    margin-right: auto;
}

/* socials container and links */
#socials {
    width:fit-content;
    margin: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-bottom: 5px solid #EF3E3E;
}
#socials a {
    margin: 10px;
}

/* all elements below the video */
#below-vid * {
    margin-bottom:10px;
}
#below-vid h2 {
    margin-bottom: 20px;
    text-align: center;
    font-family: "Century Gothic", sans-serif;
}
#below-vid .work-proj-summary {
    margin-left: 50px;
    margin-bottom: 20px;
    font-size: 80%;
}

/* finale message */
#finale {
    width: fit-content;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 50%;
    color: #555;
}

/*scrollbar styling*/
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #555;
}
::-webkit-scrollbar-thumb {
    background: #f5f5f5;
}

/* phone support */
@media only screen and (max-device-width: 768px) {
    .video-items, #chevron {
        display: none;
    }

    #header {
        position:static;
        transform: none;
        width: 100%;
        text-align: center;
        padding-top: 30px;
    }

    #below-vid {
        position: static;
    }
    .bv-component {
        width: 90%;
    }
}