﻿.landing-container {
    width: 100%;
    height: 100vh;

    /*background:#333333;*/
    overflow-y:hidden;
    overflow-x:hidden
}

.logo-container {
    text-align:center;
    margin:0 auto;
    padding-top:120px;
    position:relative;
}
.logo-container img {
    max-width:500px;
    width:90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.logo-plane {
    animation: rotation 20s infinite linear;
}
.logo-text {
    transform: translateY(-100%);
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.social-container {
    position:fixed;
    right:10px;
    bottom:10px;
}
.social-container a {
    display:inline-block;
}
.social-container img {
    width:100px;
    max-width: 14vw;
}

@font-face {
    font-family: 'Vogue';
    url('/fonts/Vogue.tff') format('truetype');
}

.image--cover {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center right;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index:-5;
}