html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    box-sizing: border-box;
    background-image: url('https://i.imgur.com/9Z9keIu.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    animation: backgroundFade 3s ease 0s 1 normal forwards;
}

#playby {
    order: 1;
    max-height: 100vh;
    max-width: 100%;
    height: 100%;
    width: auto;
    object-fit: contain;
    animation: playbyFade 3s ease 0s 1 normal forwards;
}

@keyframes playbyFade {
    from {
        opacity: 0;
        transform: translateX(-10%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


#content {
    flex: 1;
    order: 2;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    animation: contentFade 3s ease 0s 1 normal forwards;
}

#name {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0;
    animation: nameFade 3s ease 1.6s 1 normal forwards;
}

@keyframes nameFade {
    from {
        opacity: 0;
        transform: translateY(-10%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#title {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    opacity: 0;
    animation: titleFade 3s ease 1.9s 1 normal forwards;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

