@import url('../resources/fonts/roboto-slab.ttf');
@import url('../resources/fonts/roboto-slab-bold.ttf');

/* */
/* GENERAL */
/* */

.main-page *, *::after, *::before {
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-app-region: no-drag;
    cursor: default;
}

body {
    background: black;
    color: white;
}

.container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.vertical-center {
    /* Centers An Object Vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.title h1 {
    /* Font Properties */
    font-family: 'Roboto', sans-serif;
    font-size: 70px;
    color: #cccccc;
    /* Position Properties */
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%)
}

/* */
/* BACKGROUND VIDEO */
/* */

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

/* */
/* FRAME */
/* */

.frame-topleft {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -99;
}

.frame-topright {
    position: fixed;
    right: 0;
    top: 0;
    z-index: -99;
}

.frame-bottomleft {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: -99;
}

.frame-bottomright {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -99;
}

/* */
/* CONTENT */
/* */

/* Content */
.content {
    /* Important Properties */
    height:100%;
    overflow-y: auto;
    padding: 24px 12px;
}

.center {
    /* Centers An Object */
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;
}

/* */
/* SOCIAL MEDIA */
/* */

/*
.social-main {
    font-size: 35px;
    line-height: 1.4em;
    position: fixed;
    bottom: 15px;
    right: 0;
    left: 0;
}
.social-main a {
    margin-right: 8px;
    margin-left: 8px;
}

.social-main a:link, a:visited {
    color: #6a778f;
    text-decoration: unset;
}

.social-main a:hover {
    text-decoration: unset;
}

*/

/* Colors On Hover */
/*
.social-github:hover, .social-github:link:hover {
    color: #24292f;
}

.social-reddit:hover, .social-reddit:link:hover {
    color: #fa411b;
}

.social-steam:hover, .social-steam:link:hover {
    background:linear-gradient(120deg, #151c2e, #2077a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-discord:hover, .social-discord:link:hover {
    color: #5662f6;
}

.social-instagram:hover, .social-instagram:link:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-twitter:hover, .social-twitter:link:hover {
    color: #1da1f2;
}
*/

/* MAINTENANCE */
div.maintenance {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    z-index: 2;
    /* Background */
    background-color: rgba(0, 0, 0, 0.44);
    /* Border */
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    /* Font Properties */
    font-family: 'Roboto Slab', sans-serif;
    color: white;
}

@media only screen and (max-width: 756px) {
    div.maintenance {
        height: 90vh;
        overflow-y: scroll;
    }
}

.maintenance-title h1 {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 25px;
    margin-bottom: 1px;
}

.maintenance-title h2 {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
}

.maintenance-title p {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0px;
}

.maintenance-title a {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
    text-decoration: none;
}

.maintenance-title small {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 85%;
}

/* IMPRINT */
div.imprint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    z-index: 2;
    /* Background */
    background-color: rgba(0, 0, 0, 0.44);
    /* Border */
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    /* Font Properties */
    font-family: 'Roboto Slab', sans-serif;
    color: white;
}

@media only screen and (max-width: 756px) {
    div.imprint {
        height: 90vh;
        overflow-y: scroll;
    }
}

.imprint-company {
    margin-bottom: 10px;
}

.imprint-company h1 {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 25px;
    margin-bottom: 1px;
}

.imprint-company small {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 85%;
}

div.imprint-contact h2 {
    font-family: 'Roboto Bold', sans-serif;
    font-size: 20px;
}

div.imprint-contact p {
    font-family: 'Roboto Slab', sans-serif;
}