.flex-container {
  display: flex;
  flex-direction: row;
}

.flex-item-left {
  background-color: #f1f1f1;
  padding: 10px;
  flex: 50%;
  padding: 2%;
}

.flex-item-right {
  background-color: #47E10C;
  padding: 10px;
  flex: 50%;
  padding: 2%;
  text-align: center;
}

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
  .flex-container {
    flex-direction: column;
  }
}

svg {
	height: 200px;
}