@charset "utf-8";
/* CSS Document */

label {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  text-decoration: none;
  cursor: pointer;
}

input[type=radio]:checked + label {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

label:hover {
  background-color: #eee;
}

label:active {
  background-color: #ddd;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.3em;
  color:#000;
}

.button:hover {
  background-color: #eee;
}

