
#fullscreen-button {
    z-index: 999;
    position: absolute;
    bottom:  15px;
    right:  15px;
    background: rgba(255, 255, 255, 0.05);
    border:  0;
    width:  50px;
    height:  50px;
    border-radius: 50%;
    box-sizing: border-box;
    transition:  transform .3s;
    cursor:  pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#fullscreen-button:hover {
    transform: scale(1.125);
}


#fullscreen-button svg:nth-child(2) { 
    display: none;
}

[fullscreen] #fullscreen-button svg:nth-child(1) {
    display: none;
}

[fullscreen] #fullscreen-button svg:nth-child(2) {
    display: inline-block;
}
