.news_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.newletter_item {
    height: 300px;
    width: 200px;
    margin: 10px;
    justify-content: center;
}

.newletter_item img {
   width: 100%;
}

p.news_name {
    text-align: center;
    margin: 0;
    padding: 10px;
}


@media (max-width: 600px) {
  .news_wrapper {
    flex-direction: column;
  }
}