* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Archivo Narrow', 'Courier New', Courier, monospace;
    font-weight: 700;
}

html, body {
    overflow: hidden;
    height: 100%; 
}

#main {
    width: 100%;
    height: 100vh;
    background-image: url(../images/lola.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
}

#header {
    display: flex;
    position: fixed;
    top: 0;                  
    left: 0;                 
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    z-index: 10;             
}

#stream {
    display: flex;
    align-items: center;     
    justify-content: center;  
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 10px;
    gap: 20px;
}