@font-face {
    font-family: 'Stack Sans Notch';
    src: url('assets/Stack_Sans_Notch/StackSansNotch-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

html, body {
    height: 100%;
    overflow: visible;
}

body {
    font-family: 'Stack Sans Notch', sans-serif;
    font-weight: 400;
    background-color: #6B0000;
    color: #FFF;
    position: relative;
}

.slogan {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 24px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.02em;
    z-index: 10;
}

.content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.company-name {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 24px;
    font-size: 20px;
    font-weight: 400;
    z-index: 10;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

#image-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.floating-image {
    position: absolute;
    width: clamp(100px, 25vw, 200px);
    height: auto;
    pointer-events: none;
    will-change: transform, opacity, filter;
    transform-origin: center center;
}

@keyframes imageAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(var(--initial-rotation));
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(var(--initial-rotation));
        filter: blur(0px);
    }
}

@keyframes imageFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
