﻿body, ::backdrop {
    background: #fff;
}


#fullscreen-button {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,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;
    z-index:1000;
}

    #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;
}
