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

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary-dark);
}

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

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


