html {
    background-color: black;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Roboto, serif;
}

body {
    color: white;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    animation: fadeIn 0.2s normal;
    overflow: hidden;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

::-webkit-scrollbar { /* Hide scrollbar for Chrome, Safari and Opera */
    display: none;
}

.box {
    perspective: 1px;
    transform-style: preserve-3d;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.title {
    box-sizing: border-box;
    min-height: 100vh;
    position: relative;
    transform-style: inherit;
    width: 100vw;
    text-align: center;
    text-transform: uppercase;
    background-color: black;
    user-select: none;
}

.title h1 {
    margin: 0;
    position: absolute;
    word-wrap: anywhere;
    top: 50%;
    left: 50%;
    font-size: 600%;
    font-family: Fervojo, serif;
    letter-spacing: 5px;
    transform: translate(-50%, -50%);
}

.title div {
    margin: 0;
    position: absolute;
    top: 60%;
    left: 50%;
    font-family: Fervojo, serif;
    letter-spacing: 5px;
    transform: translate(-50%, -50%);
    line-break: strict;
}

.title small::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    /* Remove display: inline-block if not required to be on the same line as text etc */
    display: inline-block;
    background-color: #b8b8b8;
    width: 10px;
    /* Set height to the line height of .text */
    height: 17px;
    /*
    Animation paramaters:
    blink = animation-name,
    1s = animation-duration,
    step-end = animation-timing-function,
    infinite = animation-iteration-count
    */
    -webkit-animation: blink 1s step-end infinite;
    animation: blink 1s step-end infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.title, .title:before {
    background: 50% 50% / cover;
}

.title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: url(../img/bg.jpg);
    background-size: cover;
    transform-origin: center center 0;
    transform: translateZ(-1px) scale(2.01);
    z-index: -1;
    min-height: 100vh;
    filter: blur(3px);
}

.container {
    z-index: 2;
    left: 0;
    position: absolute;
    top: 100vh;
    background: #080f13;
    line-height: 30px;
    padding: 5%;
    width: 90%;
    color: #c3c3c3;
    font-size: 110%;
    min-height: 100vh;
}

.projects-block {
    position: relative;
    overflow: hidden;
}

.projects-block::before {
    transform: scaleX(0);
    transform-origin: bottom right;
}

.projects-block:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.projects-block::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0 0 0 0;
    background: hsl(200, 100%, 15%);
    z-index: -1;
    transition: transform .3s ease;
}

.projects-block img {
    clear: right;
    float: right
}

.members-block {
    position: relative;
    overflow: hidden;
}

.members-block::before {
    transform: scaleX(0);
    transform-origin: bottom right;
}

.members-block:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.members-block::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0 0 0 0;
    background: hsl(212, 23%, 31%);
    z-index: -1;
    transition: transform .3s ease;
}

.members-block img {
    clear: right;
    float: right
}