h1 {
  text-align: center;
}
p {
  text-align: center;
  margin: 0;
}
/* Buttons styleswitch ************************ */
#styleSwitch {
  width: 100%;
  border-top: 1px solid #949494;
  border-left: 1px solid #949494;
  border-right: 1px solid #949494;
  background: #949494;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
#styleSwitch a {
  text-decoration: none;
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
}
#style1.selected {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
  background: #fff;
  color: #000;
}
#style2.selected {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
  background: #000;
  color: #fff;
}
#style1:hover {
  background: #fff;
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#style2:hover {
  background: #000;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* End buttons styleswitch ********************* */