.roundimg {
  border-radius: 50%;
  box-shadow: 0 7px 10px 0 rgba(73, 204, 104, 0.2), 0 6px 20px 0 rgba(73, 204, 104, 0.19);
}
.roundcornerimg {
  border-radius: 8px;
  box-shadow: 0 7px 10px 0 rgba(73, 204, 104, 0.2), 0 6px 20px 0 rgba(73, 204, 104, 0.19);
}

{
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: justify;
}

.flex-item-left {
  padding: 20px;
  flex: 50%;
}

.flex-item-right {
  padding: 20px;
  flex: 50%;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
  }
}