*{
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial;
  margin: 0;
}


/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  background-color: #f1f1f1; 
}

.bottom_back_button {  
  display: flex;
  flex-wrap: wrap; 
  justify-content: flex-end;
  background-color: #f1f1f1; 
}


/* Create two columns that sits next to each other township & mines */
/* township/left column */
.township {
  flex: 50%;
  background-color: #f1f1f1;
  padding: 10px;
}

/* mines/right column */
.mines {
  flex: 50%;
  background-color: #f1f1f1;
  padding: 10px;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  color: #555555;
}


/* style of button */
 .button {
  border: 2px solid white;
  color: white;
  padding: 10px 150px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  /*margin: 50p 10px 5px 10px;*/
  cursor: pointer;
  border-radius: 90px;
  transition: 0.5s;
}

/* style of back button */
 .button_back {
  border: 2px solid white;
  color: white;
  padding: 10px 35px;
  margin: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  /*margin: 50p 10px 5px 10px;*/
  cursor: pointer;
  border-radius: 90px;
  transition: 0.5s;
}

  .buttontownship {
   background-color: #0087fd;

.buttonmines {
   background-color: #000087;
}  
.buttonhome {
   background-color: #ff4781;    
   
}

  .buttonh:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 12px 16px 0 rgba(0,0,0,0.19);
  opacity: 0.5;
}
.button a {
  text-decoration: none;
}


}
/* Responsive layout - when the screen is less than 1000px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1000px) {
  .row, .navbar {   
    flex-direction: column;
  }
}