@charset "UTF-8";
html,
body {
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

body {
    font-family: Arial, Helvetica, "sans-serif";
	font-weight: normal;
    background-color: #000000;
}

#container {
    width: 100vw;
    height: 100%;
    border: 0;
	padding-top: constant(safe-area-inset-top);
    padding-right: constant(safe-area-inset-right);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-left: constant(safe-area-inset-left);
    box-sizing: border-box;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.gc {
    top: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: auto;
    font-size: 0;
}

.gc img {
    width: 100vw;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 0.12;
}

.logo {
    display: table;
    margin: 0 auto;
    padding: 0;
    width: 100vw;
    height: calc(100% - 100vw);
    font-size: 0;
}

.inner {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
    padding: 0;
}

.occupation {
	margin: 5px 0 10px;
    padding: 0;
    color: rgba(255, 255, 255, 0.25);
	font-family: "sans-serif";
    font-size: 14px;
	letter-spacing: 6px;
}

.logo img {
    width: 70vw;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    opacity: 0.25;
}

.copylight {
    margin: 20px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.25);
	font-family: "sans-serif";
    font-size: 12px;
}

@media screen and (orientation: landscape) {
    #container {
        padding: 0 0 0 5vw;
    }
    .gc {
        float: right;
        width: auto;
        height: 100vh;
    }
    .gc img {
        width: auto;
        height: 100vh;
    }
    .logo {
        width: calc(100vw - 100vh - 5vw);
        height: 100vh;
    }
    .logo img {
        width: 100%;
}


/* Loading
---------------------------------------------*/

#loader-bg {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #000000;
    z-index: 1000;
}

#loader {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0;
    z-index: 2000;
}

.spinner {
    margin: 0 auto;
    width: 10.4947526237vh;
    height: 10.4947526237vh;
    top: calc(50% - 5.2473763119vh);
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #333333;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
    }
}