@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: manga;
    src: url("../assets/fonts/mangat.ttf");
}

#scene{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#scene #animation{
    position: absolute;
    transform: translateY(100%);
    color: white;
    font-family: manga, 'Poppins', 'sans-serif';
    font-size: 10vw;
    white-space: no-wrap;
    text-align: center;
}

#scene .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/*  BACKGROUND  (UNUSED)*/
.bg {
    animation: slide 8s ease-in-out infinite alternate;
    background-image: linear-gradient(-20deg, rgb(166, 169, 173) 30%, #132038 90%);
    /*background-image: linear-gradient(-20deg, rgb(35, 45, 63) 50%, #000000 50%);*/
    bottom: 0;
    left: -70%;
    opacity: 0.55;
    position: fixed;
    right: -70%;
    top: 0;
    z-index: -1;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 8s;
}

.bg3 {
    animation-duration: 5s;
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}

/* ZOOM */
.zoom {
    transition: transform .5s;
}

.zoom:hover {
    transform: scale(1.1);
}