@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
  padding: 0px;
  font-family: Arial;
width: 100%;	
}

/* Center website */
.main {
  max-width: 1000px;
  margin: auto;
}

h1{
    font-size: 40px;
    font-weight: bold;
    color: #04AA6D;
    text-align: center;
    margin-top: 10px;
}


h2 {
  font-size: 18px;
  word-break: break-all;
  color:#000;	
}

h3{
        font-size: 23px;
        margin-bottom: 15px;
        text-align: center;
    }

p{
	font-size: 14px;
	word-break: break-all;
	color:#fff;
}

p1{
	font-size: 14px;
	word-break: break-all;
	color:#000;
}

.row {
  margin: 10px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide all elements by default */
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display:flex ;
	flex-direction: row;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  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: #04AA6D;
  cursor: pointer;
}

.btn:hover {
  background-color: #49DFF8;
}

.btn.active {
  background-color: #666;
  color: white;
}