body {
    background:#111;
    color:white;
    font-family:Arial;
    margin: 0;
}

#streams {

    display:flex;
    flex-wrap:wrap;
    gap:5px;
    display: flex;
    justify-content: center;
}

.stream {

    background:#222;
    /* padding:5px; */
    border-radius:10px;

}

.stream iframe {
    display: block;
    border: none;
}

.stream-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pfp {
    border-radius: 50%;
    height: 60px;
    width: auto;
    margin: 5px 0 5px 5px;
}

.stream-header h2 {
    margin: 0;
    font-size: 20px;
}

.stream-header p {
    margin: 4px 0 0;
}