.home {
    display: flex;
    position: relative;
    height: 100%;
    flex: 1;
}
.home .right-side {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.home .right-side .buttons {
    margin-top: 40px;
    width: 60%;
    flex-direction: column;
}
.home .right-side .buttons .button {
    font-size: 22px;
    text-align: center;
    padding: 16px;
    cursor: pointer;
}
.home .right-side .buttons .adduser {
    border-radius: 5px;
    background-color: var(--main-color);
    font-weight: 600;
}
.home .right-side .buttons .free {
    margin-top: 12px;
    background-color: #fff;
    border-radius: 5px;
    color: var(--bg);
    font-weight: 600;
}
.home .right-side .title {
    margin-bottom: 0px;
}
.home .right-side .welcome {
    text-align: center;
    font-weight: 200;
}
.home .bg {
    height: 100%;
    background: url("/assets/intro.mp4");
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    animation: scrollBackground 60s linear infinite;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home .bg .content {
    z-index: 2;
}

.w100 {
    width: 100%;
}

video {
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    width: 100%;
}

.home .bg .content .name {
    text-align: center;
    color: #ffff;
    text-transform: uppercase;
    font-size: 22px;
}
.home .bg .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: var(--main-color); */
    opacity: 0.2;
}
@media (max-width: 1279px) {
    .home .bg {
        min-height: auto;
        padding: 50px 0px;
    }
    .home .right-side .buttons {
        width: 90%;
    }

    
}

@media (max-width: 767px) {
    .w100 {
        width: auto;
    }
}

@keyframes scrollBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
    100% {
        background-position: 100% 0;
    }
    0% {
        background-position: 0 0;
    }
}
