﻿
html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Lora', serif;
    margin: 0;
    background-image: url(../resources/images/background.jpg);
    background-size: cover;
}

.bg-video {
    width: 100%
}

.logo-container {
    margin-top: 72px;
    padding: 30px;
    text-align: center;
}

.logo {
    width: 350px;
}

.wrapper {
    padding: 5px;
    user-select: none;
}

.logo-text {
    color: white;
    margin-top: 32px;
    font-size: 24px;
    text-align: center;
}

.landing-social-container {
    position: relative;
}

.landing-social-link {
    margin: 10px;
}

.landing-social-icon {
    width: 48px;
    transition: ease-in-out 0.2s;
}

    .landing-social-icon:hover {
        filter: opacity(25%)
    }

@media (min-width: 1080px) {
    .bg-video {
        position: fixed;
        right: 0;
        top: 0;
        min-width: 100%;
    }

    .wrapper {
        position: fixed;
        width: 100%;
    }

    .logo-container {
        top: 50%;
        left: 50%;
        position: fixed;
        transform: translate(-50%, -50%);
        padding: 0;
    }

    .logo {
        width: initial;
    }

    .landing-social-container {
        position: absolute;
        right: 0;
    }
}
