

.Body-Page {
  margin: 0px;
  background-color: #F58220;
}

.NavBar {
  background-color: #333;
  overflow: hidden;
}

.NavBar a {
  float: Right;
  display: block;
  text-align: center;
  padding: 23px 50px;
  text-decoration: none;
  font-size: 20px;
  border-bottom: 3px solid transparent;
  color: white;
  font-weight: bold;
  opacity: 0.6;
  transition: 0.3s;
}

/* Change the color of links on hover */
.NavBar a:hover {
  opacity: 1;
  background-color: #3e8e41;
 }

.logo {
  position: absolute;
  height: 35px;
  margin-left: 75px;
  padding-top: 18px ;
  width: 170px;

}

.MainHead h1 {
  text-align: center;
  color: white;
}

.MainHead p {
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 20px;
}



body {
  background-color: #f1f1f1;
  
  font-family: Arial;
  box-sizing: border-box;
}

.HeadLine h1 {
  color: white;
  font-size: 35px;
}

/* Center website */
.main {
  max-width: 1000px;
  margin: auto;
}

h1 {
  font-size: 50px;
  word-break: break-all;
}

.row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
  
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.3%;
  display: none; /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  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: white;
  cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #666;
   color: white;
}