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/7iQYL5q.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

p {
    font-family: "Major Mono Display", monospace;
    font-weight: 400;
    font-style: normal;
}

#playby {
    order: 2;
    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: 1;
    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;
}


@keyframes contentFade {
    from {
        opacity: 0;
        transform: translateX(-10%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#name {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

#content p {
    margin: 1em 0;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

#poem {
    position: absolute;
    z-index: -1;
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0;
}

