body {
    margin: 0;
    background-color: #f3f3f3;
}

.logo{
    display: flex;
    justify-content: center;
    margin-top: 0px;
}

.image{
    width: 190px;
}

.work{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.photos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.resume{
    width: 400px;
    height: 500px;
    margin: 5px;
}

@media (max-width: 1184px) {
  .resume {
    width: calc(50% - 10px); /* две картинки в ряд */
    height: auto;            /* чтобы сохранялись пропорции */
    margin: 5px;
  }

  .photos {
    justify-content: space-between; /* равномерно распределим */
  }
}
