﻿body {
    background: black;
}

header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-position: top center;
    opacity: 1;
    z-index: 1;
    animation: fadeIn 3s ease forwards;
}

header .logo {
    margin-top: 20vh;
    width: 400px;
    opacity: 0;
    animation: fadeUp 1.2s ease .5s forwards;
}

#socials {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    animation: fadeUp 1.2s ease .9s forwards;
}

#socials a {
    opacity: .6;
    color: #000;
    font-size: .8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
}

#socials a:hover {
    opacity: 1;
    text-decoration: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

@media (pointer: coarse) and (hover: none) {
    header .logo {
        margin-top: 0;
        max-width: 75%;
    }
    .list-inline {
        text-align: center;
    }
}