body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.join-logo-contain {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #F6F7F8;
    z-index: 2;
}

.join-logo {
    position: absolute;
    width: 273px;
    height: 334px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.join-logo-contain img {
    width: 919px;
    height: 240px;
    padding: 5px 5px 5px 5px;
}

.join-logo-contain.animated {
    animation: containerAnimation 625ms forwards;
    animation-delay: 2000ms;
}

@keyframes containerAnimation {
    0% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes logoAnimation {
    0% {
        height: 334px;
        width: 273px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #F6F7F8;
    }

    100% {
        height: 121px;
        width: 100px;
        left: 0;
        top: 10px;
        transform: translateY(0);
        background: #f6f7f800;
    }
}

.join-logo.animated {
    animation: logoAnimation 625ms forwards;
    animation-delay: 2000ms;
    animation-fill-mode: forwards;
}