* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

body {
    background: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; 
}

h1 {
    position: absolute;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 8vw; 
    font-family: sans-serif;
    z-index: 1;
    letter-spacing: 1rem;
    text-transform: uppercase;
    white-space: nowrap;
}

h1 span img {
    height: 10vw; 
    width: 10vw;
    margin: 0 10px;
}


@media (max-width: 768px) {
    h1 {
        font-size: 6vw;
        letter-spacing: 0.5rem;
    }
    
    h1 span img {
        height: 8vw;
        width: 8vw;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 4vw;
        letter-spacing: 0.3rem;
    }
    
    h1 span img {
        height: 6vw;
        width: 6vw;
    }
}

h1 span {
    display: inline-block;
    animation: animate 0.5s ease-in-out;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotateY(90deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg);
        filter: blur(0);
    }
}
