* {
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-direction: row;
  font-size: 20px;
}

.flex-item-left {
  padding: 10px;
  flex: 70%;
  text-align: center;
}

.flex-item-right {
  padding: 10px;
  flex: 70%;
}

.responsive {
  width: 100%;
  max-width: 400px;
  height: auto;
}

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

  .region-content h1 {
    text-align: center;
  }

  .breadcrumb {
    display: none;
  }
}
