.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    border-radius: 8px;
    width: 325px;
    height: 225px;
}

.map {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}

.image-wrapper {
    position: relative;
}

.button {
    all: unset;
    cursor: pointer;
    width: 32px;
    height: 32px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    box-shadow: 0px 2px 4px 0px #5f698333;
    border-radius: 8px;
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #ffffff;
}

.button.fullscreen {
    background-image: url('./fullscreen.svg');
}

.button.exit-fullscreen {
    background-image: url('./fullscreen-exit.svg');
}
