body{
    background-color: #dedede;
}
.gallery{
    display: flex;
    width: 900px;
    margin: auto;
    justify-content: space-between;
    flex-wrap: wrap;
}
figure{
    width: 200px;
    margin: 8px 0;
    border: 1px solid #777;
    padding: 8px;
    box-sizing: border-box;
    background-color: #fff;
}
figure img{
    width: 100%
}
figure figcaption{
    text-align: center;
    padding: 8px 4px;
}
.no-copy {
  pointer-events: none;
  user-select: none;
}