.title {
    position: absolute;
    top: -30px;
    left: -2px;

    font-size: 80px;
    opacity: 0.2;
    z-index: 2;

    font-weight: 100;

    animation: toRight 1s ease forwards;
}

a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

a:hover {
    opacity: 0.5;
}

.creator {
    font-weight: 100;

    position: absolute;
    top: 60px;
    left: 2px;

    font-size: 20px;
    opacity: 0.3;
    z-index: 2;

    font-weight: 100;

    transform: translateX(-1000px);

    
    animation: toRight 1s ease forwards;
    animation-delay: 0.5s;
}

video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

#videoBanner {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

#box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

main {
    position: absolute;

    width: 50%;
    margin: 22% 5%;

    transform: translateX(-1000px);

    animation: toRight 1s ease forwards;
    animation-delay: 1s;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

#info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#name {
    font-size: 30px;
}

#desc {
    opacity: 0.7;
}

#meet_button {
    padding: 5px 10px;
    width: 200px;
    height: 50px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;

    background-color: #0044ff;
    color: #b6c1ff;
    border: 3px solid #5c74ff;
    border-radius: 10px;
    transition: 0.2s;
}

#meet_button:hover {
    background-color: #000e2c;
    border: 0px solid #001531;
    color: #85a5fc;
    transform: scale(1.1);
    font-size: 18px;
}


.SelectArea {
    position: absolute;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

    top: 0%;
    left: 90%;

    width: 100px;

    background-color: rgba(0, 0, 0, 0.5);

    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

    padding: 10px;
    z-index: 2;

    animation: toDown 0.5s ease forwards;

}

#ic_normal img {
    width: 60px;
    height: 30px;
    border-radius: 80px;

    object-fit: cover;
    transition: 0.2s;
    z-index: 2;
}

#ic_normal img:hover {
    width: 70px;
    height: 50px;
    border-radius: 80px;

    object-fit: cover;
    transition: 0.2s;
}

#ic_after {
    position: relative;
    z-index: 2;
}

#ic_after img {
    width: 90px;
    height: 90px;
    border-radius: 80px;

    object-fit: cover;
    transition: 0.2s;
    z-index: 2;
}

#ic_after::before {
    content: "";

    position: absolute;
    top: -5%;
    left: -5.5%;


    border-radius: 90px;
    border: 5px dashed rgba(255, 255, 255, 0.5);

    width: 90px;
    height: 90px;
    
    background-color: transparent;

    z-index: -1;

    animation: rotateIc 30s ease-in-out infinite;
}

#ic_after img:hover {
    transform: scale(0.9);
}



@keyframes rotateIc {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
}







@keyframes toDown {
    from {
        transform: translateY(-1000px);
    }
    to {
        transform: translateY(0px);
    }
}

@keyframes toRight {
    from {
        transform: translateX(-1000px);
    }
    to {
        transform: translateX(0px);
    }
}


@media (max-width: 590px)
{
    .SelectArea {
        position: absolute;

        display: flex;
        flex-direction: row;
        justify-content: left;
        gap: 30px;
    
        top: 86%;
        left: 0%;
    
        width: 100%;

        border-radius: 0;

        
        overflow-x: scroll;
        padding: 10px;
    }

    .SelectArea::scroll-marker {
        display: none;
    }

    #ic_normal img {
        width: 40px;
        height: 60px;
        border-radius: 80px;
    
        object-fit: cover;
        transition: 0.2s;
        z-index: 2;
    }

    #ic_normal img:hover {
        width: 40px;
        height: 80px;
        border-radius: 80px;
    
        object-fit: cover;
        transition: 0.2s;
    }

    main {
        position: absolute;
    
        width: 80%;
        margin: 85% 5%;
    
        transform: translateX(-1000px);
    
        animation: toRight 1s ease forwards;
        animation-delay: 1s;
    
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #name {
        font-size: 18px;
    }

    #desc {
        font-size: 14px;
    }

    .title {
        position: absolute;
        top: -10px;
        left: 2px;
    
        font-size: 50px;
        opacity: 0.2;
        z-index: 2;
    
        font-weight: 100;
    
        animation: toRight 1s ease forwards;
    }
}