*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
}

figure{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

figure img{
    min-width: 50px;
    min-height: 50px;
    max-width: 300px;
    max-height: 300px;
    user-select: none;
    -webkit-user-drag: none;
}


