* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #222222;
    overflow: hidden;
}

#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/BG1.jpg);
}

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

.no-scroll-element {
    touch-action: none;
    overflow: hidden;
}


.fade-out {
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    from {
        background-color: rgba(0, 0, 0, 0);
    }

    to {
        background-color: rgba(0, 0, 0, 1)
    }
}