

/* Center website */
.row {
  max-width: 100%;
}

h1 {
  font-size: 50px;
  word-break: break-all;
}

.row {
  margin: 8px;
  float: center;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create equal columns that float next to each other */
.column {
  float: left;
  width: 20%;
  display: none; /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: #9b9bca;
  padding: 10px;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #eeeef6;
  cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #bcbcdc;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #6868b1;
   color: #cccce5;
}