body{
    background-color: black;
    width: 100%;
    height: 100%;
    color: white;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
body, html{
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
}
#container{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#fullScreenBar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
#subContainer{
    display: flex;
    flex-direction: column;
}
#fullscreen{
    width: 50px;
    height: 50px;
    cursor: pointer;
}
#fullscreen img{
    width: 100%;
    height: auto;
    object-fit: cover;
    filter:invert()
}