* {
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  padding: 10px;
  background: #6b757e;
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
}
@media (min-width: 300px) {
  body {
    padding: 60px 10px;
  }
}
h1 {
  margin: 0;
  font-family: 'Bree Serif', serif;
  font-size: 36px;
}
p {
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.5;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  background: #e5e5e5;
  box-shadow: 0 48px 80px -32px rgba(0,0,0,0.3);
}
.input {
  position: absolute;
  opacity: 0;
}
.label {
  width: 100%;
  padding: 20px 30px;
  background: #d9d9d9;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: #7f7f7f;
  transition: background 0.1s, color 0.1s;
}
.label:hover {
  background: #cccccc;
}
.label:active {
  background: #e5e5e5;
}
.input:focus + .label {
  box-shadow: inset 0px 0px 0px 3px #2aa1c0;
  z-index: 1;
}
.input:checked + .label {
  background: #e5e5e5;
  color: #000;
}
@media (min-width: 300px) {
  .label {
    width: auto;
  }
}
.panel {
  display: none;
  padding: 20px 30px 30px;
  background: #e5e5e5;
  width: 100%;
}
@media (min-width: 300px) {
  .panel {
    order: 99;
  }
}
.input:checked + .label + .panel {
  display: block;
}
a {
	COLOR: #cc3300; TEXT-DECORATION: none
}
a:visited {
	COLOR: #ff3300; TEXT-DECORATION: none
}
a:hover {
	COLOR: #009966; TEXT-DECORATION: none
}
a:active {
	COLOR: #3300ff; TEXT-DECORATION: none
}