@font-face {
    font-display: swap;
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 500;
    src: local('Orbitron'),
        url('/=font=/orbitron-v31-latin-500.woff2') format('woff2'),
}

html {
    -webkit-tap-highlight-color: transparent;
    height: -webkit-fill-available;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    height: -webkit-fill-available;
    background-color: #000000;
    color: #000000;
    -khtml-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

h1 {
    position: sticky;
    text-align: center;
    font-family: 'Orbitron';
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    z-index: -3;
}

h2 {
    position: sticky;
    text-align: center;
    font-family: 'Orbitron';
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    letter-spacing: 15px;
    text-indent: 15px;
    z-index: -3;
}

.img {
    margin-top: 10px;
}

.flex-container {
    display: flex;
    flex-direction: column;
}

.flex-item {
    margin-left: auto;
    margin-right: auto;
}

.logo {
    background: url("/=image=/ps/01750-PS.svg") no-repeat;
    transition: .5s linear;
    transition-duration: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 500px;
}

.logo:hover {
    background: url("/=image=/ps/01750-PS-hover.svg") no-repeat;
}

.tooltip {
    position: absolute;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: transparent;
    font-family: 'Orbitron';
    font-size: 15px;
    color: #757575;
    text-align: center;
    letter-spacing: .5px;
    text-indent: .5px;
    padding: 5px 0px;
    position: absolute;
    z-index: 1;
    top: 95px;
    margin-left: -250px;
    opacity: 0;
    transition: opacity 1s;
    transition-duration: 1s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#canvas {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: -1;
}

/* --- DARK MODE = HYBRID SPACE --- */

.dark-mode {
    background: #151515;
    color: #151515;
}