 .hashtag {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: "MS Gothic", Arial, sans-serif;
    font-size: 4em;
    color: var(--white);
    letter-spacing: 2px;
    z-index: 10;
    text-shadow: 1px 1px 6px #000a;
    user-select: none;
}
:root {
    --flash-z: 100;
}
#flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    opacity: 0;
    pointer-events: none;
    z-index: var(--flash-z);
    transition: opacity 0.15s;
}
.intro-title-wrapper {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 3;
    width: calc(100% - 80px);
}
.logo-img {
    margin-left: auto;
    height: 30em;
    width: auto;
    min-height: 0;
    min-width: 0;
    max-height: 100%;
    margin-right: 0;
    object-fit: contain;
    user-select: none;
    display: block;
    align-self: flex-start;
}
.intro-title {
    position: static;
    width: auto;
    text-align: left;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 7em;
    line-height: 0.9em;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px #000a;
    user-select: none;
    transform: none !important;
    animation: none !important;
    will-change: auto;
}
.intro-title .white {
    color: var(--white);
}
.intro-title .gold {
    color: var(--gold);
}
:root {
    --gold: #64561cff;
    --white: #ffffff;
    --black: #000000;
}

html {
    overflow: hidden;
}
body {
    margin: 0;
    padding: 0;
    width: 1600px;
    height: 1200px;
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    position: relative;
    background: #000;
}
#background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: url("public/background.png") no-repeat center center/cover;
    z-index: 1;
    animation: floatBg 12s ease-in-out infinite alternate;

    overflow: hidden;
}
@keyframes floatBg {
    0% {
        transform: translateY(0px) scale(1.03);
    }
    10% {
        transform: translateY(-80px) scale(1.10) rotate(-1deg);
    }
    20% {
        transform: translateY(60px) scale(1.04) rotate(2deg);
    }
    30% {
        transform: translateY(-120px) scale(1.13) rotate(-2deg);
    }
    40% {
        transform: translateY(100px) scale(1.07) rotate(3deg);
    }
    50% {
        transform: translateY(-160px) scale(1.18) rotate(-3deg);
    }
    60% {
        transform: translateY(120px) scale(1.09) rotate(2deg);
    }
    70% {
        transform: translateY(-100px) scale(1.15) rotate(-2deg);
    }
    80% {
        transform: translateY(80px) scale(1.06) rotate(1deg);
    }
    90% {
        transform: translateY(-60px) scale(1.11) rotate(-1deg);
    }
    100% {
        transform: translateY(0px) scale(1.03) rotate(0deg);
    }
}
.content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 35%;
    width: 100%;
}
#main-text {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px #000a;
    animation: none !important;
    transform: none !important;
}
#countdown {
    font-family: 'Consolas', 'Courier New', monospace;
    font-weight: 900;
    font-size: 13em;
    letter-spacing: 2px;
    text-shadow: 1px 1px 6px #000a;
    animation: growShrink 1s ease-in-out infinite alternate;
}

@keyframes growShrink {
    0% {
        font-size: 13em;
    }
    100% {
        font-size: 15em;
    }
}
