* {
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
}


body, html {
    padding: 0;
    margin: 0;
}

#bg-gradient {
    width: 100vw;
    height: 100vh;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.container {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;
}

.header {
    width: 100%;
    height: 10vh;
    background-color: transparent;
    text-align: center;

    font-weight: lighter;
    font-size: 36px;
    line-height: 10vh;
    color: white;
}

.animation {
    text-align: center;
}

.animation video {
    width: 80%;
    height: auto;
}

.animation img {
    width: 69%;
    height: auto;
}

.fullform {
    text-align: center;
    font-size: 24px;
    font-weight: lighter;

    color: white;
}

.aboutPara {
    color: white;
    font-size: 18px;
    text-align: center;
    font-weight: lighter;
    margin-top: 30px;
    line-height: 24px;
}

.bibliography {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: lighter;
    height: 60px;

    position: absolute;
    bottom: 0; left: 0;

}

.bibliography img {
    max-width: 90px;
}


.author {
    /* position: absolute; */
    width: 100%;
    /* bottom: 0;
    left: 0; */
    padding-bottom: 24px;
    text-align: center;
    color: white;
    font-weight: lighter;
    font-size: 18px;
}

.author .w-50 {
    float: left;
    width: 50%;
}

.author .madeByText {
    margin-bottom: 10px;
}

.author .authorName {
    font-weight: normal;
}


@media only screen and (max-width: 320px) {
    .animation img {
        width: 60%;
        height: auto;
    }

    .aboutPara {
        margin-top: 12px;
    }

    .bibliography {
        margin-top: 12px;
    }
}




/* ---- */

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.w-full {
    width: 100%;
}

.w-half {
    width: 50%;
}

.w-one-third {
    width: 33%;
}

.h-full {
    height: 100%;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 8px;
}