/* Utility class */
.text-center {
  text-align: center;
}

/* Universal properties */
* {
  /* border: 1px solid rgb(254, 244, 243); */
  margin: 0;
  border-radius: 3px;
  box-sizing: border-box;
}

/* Modified tags */
body {
  color: white;
  background: black;
}

/* Modified classes */
.section {
  border: 3px solid rgba(53, 226, 220, 0.521);
  width: 80vw;
  margin: auto;
  padding: 10px 15px;
  margin-bottom: 10px;
}

/* Modified ids */
#section-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: stretch;
}

/* .primary-box {
    border: 5px solid blanchedalmond;
} */