@font-face {
    font-family: "Comfortaa";
    src: url('fonts/Comfortaa-Regular.eot') format('embedded-opentype'),
        url('fonts/Comfortaa-Regular.woff') format('woff'),
        url('fonts/Comfortaa-Regular.ttf') format('truetype'),
        url('fonts/Comfortaa-Regular.svg') format('svg');
}

h1 {
    font-family: Comfortaa;
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 200%;
    font-weight: bold;
}

h2 {
    font-family: Comfortaa;
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 200%;
}

.text {
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 200%;
    margin-bottom: 20px;
}

.contact {
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 75%;
    margin-bottom: 10px;
    text-decoration: none;
}

.contact a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.copy {
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 75%;
}

.last {
    display: none;
    text-align: center;
    color: white;
    font: status-bar;
    margin-bottom: 10px;
    font-size: 75%;
}
.page {
    display: none;
}


@media (min-width: 750px) {
    .projects {
        width: 90%;
        justify-content: center;
        display: flex;
        margin-left: 5%
    }

    .project {
        border: 3px gray;
        width: 25%;
        margin-left: 25px;
        margin-right: 25px;
    }

    .projecttext {
        display: none;
        width: 60%;
        justify-content: center;
        margin-left: 20%;
        color: white;
        font: status-bar;
        font-size: 100%;
        text-align: center;
    }
}

@media (max-width: 750px) {
    .projects {
        width: 80%;
        justify-content: center;
        margin-left: 10%
    }

    .project {
        border: 3px gray;
    }

    .projecttext {
        display: none;
        width: 80%;
        justify-content: center;
        margin-left: 10%;
        color: white;
        font: status-bar;
        font-size: 100%;
        text-align: center;
    }
}

.projecttext img {
    width: 80%;
    height: auto;
    margin-left: 10%;
}

.clear {
    clear: both;
}

.seperate {
    border: none;
    color: #FFFFFF;
    background-color: #FFFFFF;
    height: 1.5px;
    width: 85%;
    margin-left: 5%;
    margin-bottom: 20px;
}

.image {
    -webkit-filter: invert(1);
    filter: invert(1);
    max-height: 85px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.title {
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 100%;
    margin-bottom: 20px;
    font-weight: bold;
}

.content {
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 100%;
    margin-bottom: 20px;
}

.link {
    text-align: center;
    color: white;
    font: status-bar;
    font-size: 100%;
    margin-bottom: 20px;
}

.link a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.circle {
    width: 120px;
    height: 120px;
}

.loader {
    position: fixed;
    top:50%;
    left:50%;
    margin-left:-60px;/* half width*/
    margin-top:-60px;/* half height*/
    border: 32px solid transparent; /* Light grey */
    border-top: 32px solid #f3f3f3; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.circle {
    position: relative;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-bottom: 10px;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg-overlay {
    opacity: .8;
    background-color: #2a2a2b;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

@media (min-width: 750px) {
    .fullscreen-bg__video {
        position: absolute;
        top: -10px;
        left: -10px;
        bottom: -10px;
        right: -10px;
        min-width: calc(100vw + 20px);
        min-height: calc(100vh + 20px);
        -webkit-filter: blur(3px);
        -moz-filter: blur(3px);
        -o-filter: blur(3px);
        -ms-filter: blur(3px);
        filter: blur(3px);
    }
}

@media (max-width: 750px) {
    .fullscreen-bg__video {
        position: absolute;
        top: -10px;
        left: -800px;
        bottom: -10px;
        right: -10px;
        min-width: calc(100vw + 20px);
        min-height: calc(100vh + 20px);
        -webkit-filter: blur(5px);
        -moz-filter: blur(5px);
        -o-filter: blur(5px);
        -ms-filter: blur(5px);
        filter: blur(5px);
    }
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    background-color: #2a2a2b;
}