body {
    background: black;
    overflow: hidden !important;
    overflow-y: hidden !important;
    height: 100vh;
    width: 100vw;
}

#logo {
    object-fit: contain;
    width: auto;
    margin-top: 10vh;
    margin-left: 10vw;
    transition: all 1.5s ease;
    transform-origin: 0 0;
    position: relative;
    max-width: 80vw;
}

#drag-hint,
#logo {
    pointer-events: none;
}

#drag-hint {
    transition: all 0.6s ease;
    position: absolute;
    right: 10vw;
    bottom: 10vh;
    color: rgba(255, 255, 255, 0.8);
}

.link-icon {
    display: inline-block;
    padding-right: 15px;
    font-size: 24px;
}

.name {
    font-size: 1.5em;
    font-family: "bold", Arial !important;
    font-weight: bolder;
}

.title {
    font-size: 1em;
    font-family: "regular", Arial !important;
    font-weight: normal;
}

#infos,
#menu {
    margin-left: 10vw;
    position: relative;
    transition: all 1s ease;
}

#menu {
    margin-top: 3vh;
}

#menu ul {
    height: 100%;
    width: fit-content;
    margin: 0 !important;
    padding: 0 !important;
}

#menu ul li {
    color: white;
    font-weight: bolder;
    text-align: left;
    list-style-type: none;
    transition: all 0.8s ease;
    text-transform: uppercase;
    font-family: "bold", Arial !important;
    margin-bottom: 3vh;
}

#menu ul li:hover {
    transition: all 0.8s ease;
}

#infos a {
    text-decoration: underline !important;
}

.arrow {
    font-family: sans-serif;
    font-size: 0.7em;
    transition: all 0.7s ease;
}

#webgl-galaxy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    transition: opacity 2.0s ease;
}

#webgl-canvas {
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
}

@keyframes blink {
    50% {
        opacity: 0;
        transition: opacity 1s linear;
    }
}

@-webkit-keyframes blink {
    50% {
        opacity: 0;
        transition: opacity 1s linear;
    }
}

.blink {
    animation: blink 1s step-start 0s infinite;
    -webkit-animation: blink 1s step-start 0s infinite;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    transition: opacity 1s linear;
}


/*#touch-indicator {   position:relative;z-index:10;
}
.ripple {
background-position: center;
transition: left 0.8s ease, top 0.8s ease,;
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
opacity: 0.4;
transform:scale(0);
}
.bounce {
transition: all 2.3s ease, left 2.0s ease-in, top 2.0s ease-in;
transform:scale(2.0);
opacity:0;
}

#touch-indicator {
border: none;
pointer-events: none;
width:10vw; height:10vw;
border-radius: 50%;
text-transform: uppercase;
cursor: pointer;
background-color: transparent;
outline: none;
}*/