html,body{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    height:100%;
}

body {
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: whitesmoke;
    font-family: "Work Sans", FreeSans, sans-serif;
    font-weight: 200;
}

nav {
    width: auto;
    height: 90px;
    padding: 0px;
    background-color: rgba(0,0,0,.8);

}

footer {
	bottom: 0;
	cursor: default;
	height: 45px;
	left: 0;
	line-height: 3.5em;
	position: absolute;
	text-align: center;
	width: 100%;
    background-color: rgba(0,0,0,.8);
}

.ico {
    width: auto;
    float: right;
    margin-right: 40px;
    padding: inherit;
}

.social-item{
    display: inline-block;
    margin-top:25px;
    margin-right: 15px;

}
.social-item svg{
    width:auto;
    height:40px;
    transition: all .25s ease-in-out;
    fill: whitesmoke;
}
.social-item svg:hover {
    fill: darkred;
    animation: icoframes 1s ease-in-out infinite;
}

@keyframes icoframes {
    10% {
        transform: rotate(5deg);
    }
    20% {
        transform: rotate(-5deg);
    }
    30% {
        transform: rotate(5deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

#oink {

    font-size: 2.5em;
    position: absolute;
    margin: auto;
    margin-left: 40px;
    margin-top: 20px;
}

video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url('') no-repeat;
    background-size: cover;
    -webkit-transition: .5s all ease;
    transition: .6s all linear;
    opacity: 0;
}

.opaq {
    opacity: 1;

}