/* Center website */
.main {
  max-width: 1000px;
  margin: auto;
  min-height: 100vh;
}

h4 {
  margin-top: 2px;
  margin-bottom: 2px;
  
}

.row {
  margin: 0px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding-left: 6px;
}

/* Create three equal columns that floats next to each other */
.column {
  /*float: left;*/
  width: 100%;
  display: none; /* Hide all elements by default */
}

@media (min-width: 600px) {
  .column {
  	width: 60%;
  }
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  padding: 10px;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 12px;
  background-color: white;
  cursor: pointer;
}

.btn:hover {
  background-color: #ddd;
}

.btn.active {
  background-color: #666;
  color: #ddd;
}

p {
  font-size: 1em;
  margin-top: 0;
}

.box {
  width: 100%;
    min-height: 100vh;
    background-image: url("hero.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.box2 {
  width: 100%;
    min-height: 100vh;
    background-image: url("hero1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.hero_title {
  margin-top: 0;
  padding-top: 10px;
  padding-left: 10px;
}

.content img {
  margin-left: auto;
  margin-right: auto;
}
