html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    box-sizing: border-box;
    background-color: #1c0c17;
    background-image: url("https://i.imgur.com/GG5Dv4V.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    animation: bodyFadeIn 2s ease 0s 1 normal forwards;
}


#playby {
    order: 1;
    max-height: 100vh;
    max-width: 100%;
    height: 100%;
    width: auto;
    object-fit: contain;
    animation: playbyFade 6s ease 0s 1 normal forwards;
}

@keyframes playbyFade {
    from {
        opacity: 0;
        transform: translateX(-10%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


#content {
    flex: 1;
    order: 1;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

#groupname {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
}

#name {
    display: block;
    margin: 0 auto;
    opacity: 0;
    max-width: 100%;
    animation: nameFade 3s ease 3s 1 normal forwards;
}

@keyframes nameFade {
    from {
        opacity: 0;
        transform: translateY(-10%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#title {
    display: block;
    max-width: 100%;
    opacity: 0;
    transform: translate(-20%, -145%);
    animation: titleFade 3s ease 1s 1 normal forwards;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translate(-20%, -105%);
    }
    to {
        opacity: 1;
    }
}
