.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 1s;
}

.background-img {
    background: var(--bg-image);
    background-size:110vw;
    background-position-x: center;
    background-repeat: repeat;
    z-index: -3;
    background-color: var(--bg-bg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: bg-blur-animation 5s ease;
}

@keyframes bg-blur-animation {
    0% {opacity: 0; filter: blur(20px);}
    70% {opacity: 1; filter: blur(10px); }
    100% {opacity: 1; filter: blur(0px);}
}

.page-stuff {
    display: flex;
    height: 100vh;
}

.overlay {
    z-index: -2;
    background-color: var(--bg-bg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    align-items: center;
    justify-content: center;
    backdrop-filter: invert(var(--bg-backdrop-filter));
}