/* GENERAL */
body {
    font-family: 'Montserrat';
    background-color: black;
    position: relative;
    color: white;
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
/* ENDGENERAL */

/* VIDEO */
.video_container {
    width: 100%;
    height: 99.4vh;
}
video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
/* ENDVIDEO */

/* TEXT */
#text_container {
    position: fixed;
    top: 0px;
    left: 50px;
}
.fade_in {
    animation: fade_in .7s;
}
@keyframes fade_in {
    0% { color: transparent; }
    100% { color: inherit; }
}
h1 {
    opacity: 0.7;
    font-size: 120px;
    line-height: 0em;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    transition: opacity .3s;
} h1:hover {
    opacity: 1.0;
}
p {
    margin-top: 0;
    padding-left: 15px;
    opacity: 0.5;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    transition: opacity .3s;
} p:hover {
    opacity: 1.0;
}
.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}
.arrow_right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
#to_site {
    height: 35px;
    width: 35px;
    position: fixed;
    top: 0px;
    right: 0px;
}
#to_site:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '\d7';
    font-size: 40px;
    line-height: 25px;
    color: white;
    opacity: 0.5;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    transition: opacity .3s;
}
#to_site:hover:after {
    opacity: 1.0;
}
/* ENDTEXT */