body{
    background-color: #000825;
    color: white;
    font-family: sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1{
    font-size: 50px;
    margin-bottom: 40px;
}

.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; 
}

.jelly, .lenny{
    width: min(90%, 1024px);
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    border: 4px solid white;

    background-size: contain;
    background-color: #000825;
    background-position: center;
    background-repeat: no-repeat;

    display: block;
}


.jelly{
    background-image: url("jellyfin.png");
}

.lenny{
    background-image: url("lenny.png");
}

@media (min-width: 1100px){
    .wrapper{
        flex-direction: row;
        justify-content: center;
    }

    .jelly, .lenny{
        height: 500px;
    }
}
