html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #190d19;
    background-image: url(https://i.imgur.com/pUvaDFx.png);
    overflow: hidden;
}

#all {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;

}


#playby {
    background-image: url('https://i.imgur.com/9TGm4uB.png');
    background-size: auto;
    background-position: right;
    height: 100%;
    width: 66%;
    position: absolute;
    background-repeat: no-repeat;
    right: 0%;
    opacity: 0;
    animation: pbf 3s ease 0.5s 1 normal forwards;
    transition: background-image 1s ease;
}

#playby:hover {
    background-image: url('https://i.imgur.com/JYAsRWK.png');
}

@keyframes pbf {
    0% {
        opacity: 0;
        transform: translateX(5%);
    }
    
    100% {
        opacity: 1;
    }
}



#content {
    display: table-cell;
    max-width: 100%;
    min-width: 40%;
    width: 30%;
    height: 100%;
    position: absolute;
    right: 50%;
    animation: descf 3s;
}

#desc {
    height: 100%;
    width: 100%;
    position: absolute;
}

@keyframes brf {
    0% {

    }

    100% {
        transform: translate(0, 0%);
        opacity: 1;
    }
    
}


#name1 {
    user-zoom: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
    margin: 43% 0 0% 0;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    object-position: 50% 50%;
    width: 85vh;
    opacity: 0;
    transform: translate(0%, 0%);
    animation: fade1f 3s ease 1.5s 1 normal forwards;
}

@keyframes fade1f {
    0% {
        transform: translate(-20%, 0%);
    }

    100% {
        opacity: 1;
    }
}

#name2 {
    user-zoom: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
    margin: 1.5% 0% 0% 0;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    object-position: 50% 50%;
    width: 45vh;
    opacity: 0;
    animation: fade2f 3s ease 3s 1 normal forwards;
}

@keyframes fade2f {
    0% {
        transform: translate(20%, 0%);

    }

    100% {
        opacity: 1;
    }
}

#groupname {
    transform: translate(0%, 0);
}

#name3 {
    user-zoom: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
    margin: 50% 0 1.5% 0;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    object-position: 50% 50%;
    width: 55vh;
    opacity: 0;
    transform: translate(-3%, -0%);
    animation: fade3f 3.5s ease 2.5s 1 normal forwards;
}

@keyframes fade3f {
    0% {
        transform: translate(-3%, -80%);
    }

    100% {
        opacity: 1;
    }
}

#wraith {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    transform: translate(60%, 30%) rotate(10deg);
    animation: wraithf 3s ease 4.5s 1 normal forwards;
}

@keyframes wraithf {
    0% {
        opacity: 0;
        transform: translate(60%, 30%) rotate(0deg);
    }

    100% {
        opacity: 0.3;
    }
}