/* CSS for Globe */
.globeBody{
    background-color: black;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tagcloud > ul > li {
    color: white;
    font-family: 'body';
    text-align: center;
    list-style-type: none;
    user-select: none; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
}

#tagcloud{
    position: relative;
    width: 90vw;
    height: 90vh;
}

/* CSS for index.html*/
.index {
    background-color: black;
    height: 100vh;
}

@font-face {
    font-family: body;
    src: local('body'), url('fonts/SF_MUMU.otf') 
}

@font-face {
    font-family: main;
    src: local('main'), url('fonts/Rock3D-Regular.ttf') 
}

.text-box{
    width: 70%;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-family: 'main';
    font-size: 7vw;
}
.enter-btn{
    margin: 5px 0 5px;
    text-decoration: none;
    color: #fff;
    padding: 12px 6px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}
.enter-btn:hover{
    color: #80808031;
    transition: 1s;
}

#video-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#video {
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    min-width: auto;
    min-height: 100%;
    width: auto;
    height: auto;   
}

/* CSS for 404.html*/
.error404 {
    background-color: black;
    height: 100vh;
}
