@font-face {
    font-family: "recoleta-bold";
    src: url('assets/font/recoleta-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    font-family: 'recoleta-bold', sans-serif;
    font-size: 16px;
    background-color: #222222;
}

#videoContainer {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

#touch-icon {
    position: absolute;
    cursor: pointer;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: scale-pulse 1.5s infinite ease-in-out;
    display: none;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    border: 0;
}

#app {
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    overflow: hidden;
    z-index: -1;
    min-height: 100dvh;
    min-width: 100dvw;
}

.bg1 {
    background-image: url(assets/images/2.jpg);
}

.bg2 {
    background-image: url(assets/images/3.jpg);
}

@keyframes scale-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}