#index {
    position: relative;
    overflow: hidden;
    background-color: #171717;
}

.welcome {
    display: flex;
    flex-direction: row-reverse;
    z-index: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.welcome-left {
    width: 50%;
    height: 100vh;
    display: flex;
    background-color: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;

    img {
        width: 90%;
    }
}

.welcome-container {

    width: 60%;
    margin-top: 20px;
    display: block;

    hr {
        border-color: #C387BF;
        margin-top: 2px;
    }
}

.welcome-rectangle {
    width: 100px;
    height: 10px;
    background-color: #68316D;
    clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 0% 100%);
    padding: 2px;
    border: 1px solid #68316D;
}
.welcome-circle {
    display: flex;
    float: left;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #140A16;
    margin-right: 2px;
}

.welcome-box {
    border: 1px solid #68316D;
    border-bottom: 5px solid #68316D;
    padding: 10px;
}

.welcome-right {
    width: 50%;
    height: 100vh;
    display: flex;
    background-image: url("indeximg.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right;
}

.welcome-text {
    width: 100%;
    background-color: rgba(102,49,108,0.2);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    color: white;
    font-size: 1.4rem;
}

    /* RESPONSIVE STYLE */
    @media (max-width: 900px) {
        .welcome {
            flex-direction: column-reverse;
        }

        .welcome-left {
            width: 100%;
            height: 40vh;
        }

        .welcome-container {
            width: 80%;
        }

        .welcome-right {
            width: 100%;
            max-height: 60vh;
            min-height: 60vh;
        }
    }

/* HEADER BACKGROUND */
@keyframes rotate2 {
    0% {
        transform: rotate(0deg) scale(80%);
    }
    100% {
        transform: rotate(360deg) scale(120%);
    }
}

.gradient {
    --size: 1000px;
    --speed: 10s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);

    position: absolute;
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(#0baaff, #bc0000);
    animation: rotate2 var(--speed) var(--easing) alternate infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}