@font-face {
    font-family: 'Consolas';
    src: url('../other/Consola.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Consolas';
    cursor: url('../other/cursor.png'),default;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#ehe {
    display:none; 
    position:absolute; 
    pointer-events:none;
    width: 100px;
    height: auto;
    z-index: 1000;
}

#background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    filter: opacity(0.8);
    object-fit: cover;
}

.overlay-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: url('../img/dot.png');
    opacity: 0.4;
    mix-blend-mode: multiply;
}

.playButton {
    color: white;
    margin-top: 10px;
    margin-left: 10px;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 40vh;
}

.swing {
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
    animation: swing 2s infinite ease-in-out;
    transform-origin: middle center;
    margin: 0 auto;
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.typed-text-container {
    margin-top: 30px;
}

.typed-text {
    font-size: 1.5rem;
    font-weight: normal;
    display: inline;
    font-size: 15px;
}

.cursor {
    display: inline-block;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.social-slider {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: white;
}

.social-text-wrapper {
    width: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.arrow {
    font-size: 1.5rem;
    color: white;
    margin: 0 10px;
    user-select: none;
}

.social-text {
    display: inline-block;
    padding: 0 10px;
    white-space: nowrap;
    text-align: center;
    color: white;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    margin-right: 15px;
}

.social-text:not(:last-child) {
    margin-right: 15px;
}

.emoji-separator {
    font-size: 0.8rem;
    margin-right: 5px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.social-text-container {
    display: flex;
    position: relative;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.credits {
    position: fixed;
    bottom: 5px;
    left: 5px;
    color: white;
    font-size: 10px;
}
