/* 130110 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    /*min-width: 1180px;*/
}

.heading-page {
    min-height: 40vh;
    background-color: #130110;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.75);
}

.logo {
    margin: 50px;
    width: 350px;
    max-width: 20vw;
}

.logo img {
    width: 100%;
}

.heading-title {
    font-size: 5.5em;
    font-weight: 400;
    margin: 50px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.heading-title > * {
    transition: color 5s ease;
}

.about-project {
    margin: 50px;
    margin-top: 30px;
}

.about-project-title {
    padding: 20px 0;
    font-size: 3em;
    font-weight: 400;
    color: #5fdb95;
}

.about-project-title::first-letter {
    color: #d93f87;
}

.about-project-description {
    width: 60vw;
    font-size: 1.8em;
}

.about-project-description a {
    color: #d93f87;
}

.brain {
    top: -20%;
    z-index: 999;
    display: inline;
}

.brain img {
    float: right;
    width: 20%;
}

.video-page {
    min-height: 40vh;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-heading {
    text-align: center;
}

.video-container {
    display: flex;
}

.box {
    max-width: 30vw;
    max-height: 30vh;
    margin: 20px 40px;
    box-shadow: 0px 0px 15px 7px rgba(0,0,0,0.2);
}

.video-box {
    font-size: 2em;
    color: rgba(0,0,0,.87);
    text-align: center;
}

.article-page {
    min-height: 40vh;
    /*background-color: #130110;*/
    box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.75);
}

.article-heading {
    text-align: center;
    font-size: 2em;
    word-spacing: 20px;
    padding: 20px;
    color: #5fdb95;
}

.article-container {
    display: flex;
}

.article-box {
    font-size: 2em;
    /*color: #ffffff;*/
    color: rgba(0,0,0,.87);
    text-align: center;
}

.linktext {
    /*color: rgb(6, 69, 173);*/
    color: rgb(216, 63, 135);
}

.footer-page {
    min-height: 50vh;
    color: rgba(255,255,255,.87);
    background-color: #130110;
    text-align: center;
    position: relative;
}

.footer-logo {
    margin: auto;
    width: 200px;
}

.footer-logo img {
    text-align: center;
    width: 100%;
}

.footer-heading {
    font-size: 2em;
    padding: 20px;
    word-spacing: 20px;
}

.footer-authors {
    font-size: 2em;
    word-spacing: 10px;
}

.footer-copyrights {
    font-size: 0.7em;
    padding: 10px;
    color: #ffffff;
    text-align: left;
    /*background-color: #130110;*/
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.social-bar {
    position: fixed;
    right: 0;
    top: 20%;
    z-index: 999;
    padding: 2px;
    background-color: black;
    border: 2px solid white;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 3px;
    border-radius: 15px;
}