*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.scene {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-image {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4vw;
}

.distressed-text {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(3.5rem, 13vw, 11rem);
    line-height: 0.92;
    color: #ddd8c6;
    letter-spacing: 0.06em;
    text-align: center;
    filter: url(#distress-filter);
    text-shadow:
        3px  3px 10px rgba(0, 0, 0, 0.95),
        -2px -2px  6px rgba(0, 0, 0, 0.7),
         0px  0px 20px rgba(0, 0, 0, 0.5);
}
