body {
  background-color: black;
  color: white;
  text-align: center;
  margin: 0;
}

* {
  box-sizing: border-box;
}

.wrapper {
  width: 1200px;
  max-width: 90%;
  margin: 2% auto;   /* centers everything */
}

.about {
  padding: 1% 5%;
  /*border: 2px solid white; */
  border-radius: 15px;
  text-align: left;
  margin-bottom: 2%;
}

.row {
  display: flex;
}

.left-box,
.right-box {
  width: 50%;         /* each takes half */
  padding: 2% 5%;
  border: 2px solid white;
  border-radius: 15px;
  text-align: center;
}

.left-box img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* optional */
}

.right-box img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* optional */
}

.left-box {
  margin-right: 1%;   /* optional spacing between them */
}