body {
	background: #1F1F1F url(../images/exclusive_paper.png);
	font-family: 'Montserrat', sans-serif;
}

h2 {
  font-size: 4rem;
  font-family: 'Marck Script', cursive;
  text-shadow: 2px 2px 2px grey;
  margin-bottom: 2%;
  color: #05224b;
}

.start {
	padding-top: 5%;
	text-align: center;
	padding-bottom: 100px;
}

.accordion {
  background-color: rgba(243, 244, 246, 1);
  color: #444;
  cursor: pointer;
  padding: 18px;
  margin-top: 10px;
	width: 75%;
  border-radius: 8px;
  text-align: left;
  outline: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.4s;

}

.active, .accordion:hover {
 background-color: rgba(222, 228, 232, 1);
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
	margin-right: 15%;
	margin-left: 15%;
	margin-top: 0.5%;
	border-radius: 5px;
  background-color: rgba(247, 247, 247, 1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p {
	font-size: 1.2rem;
	text-align: left;
	margin-top: 1%;
	margin-bottom: 2%;
	margin-right: 2%;
	margin-left: 2%;
	line-height: 150%;
}