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;
}
#gameFName{
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
}
#container{
    height: 100vh;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    box-sizing: border-box;
}
#fullScreenBar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#subContainer{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.actions{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 5px;
}
#fullscreen, #save{
    width: 50px;
    height: 50px;
    cursor: pointer;
}
#fullscreen img, #save img{
    width: 100%;
    height: auto;
    object-fit: cover;
    filter:invert()
}
.options{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
#dosEmConf{
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
fieldset{
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    width: 400px;
    max-height: 400px;
    overflow-y: scroll;
    display: block;
    flex-shrink: 0;
}
fieldset legend{
    color: white;
    font-size: 20px;
    font-weight: bold;
    /* capitalize */
    text-transform: capitalize;
}