@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Lora', serif;
  color: black;
	padding: 0 5%;

}
#title{
    text-align: center;
    font-size: 40px;
    text-shadow: 2px 2px 3px grey;
	margin: 5rem 0rem;
}

.introduction {
	font-size: 16px;
	font-weight: 500;
}

.sub-header{
    font-size: 20px;
	margin: 5rem auto 1.5rem auto;
}

.main-wrapper {
	margin-bottom: 200px;
	max-width: 1000px;
	margin: 0 auto;
}

.feature {
	font-size: 16px;
	font-weight: 500;
}

.sub-sub-header{
	font-size: 18px;
	margin: 3rem auto 1.5rem auto;
	color: #053C99;
}

.sub-feature{
	font-size: 16px;
	font-weight: 500;
}

.button {
	background-color: gold;
	max-width: 200px;
	padding: 15px;
	margin: 20px 0;
	border-radius: 12px;
}

.button:hover{
    transform: translateY(-2px);
  box-shadow: 0 10px 14px rgba(50,50,93,.3), 0 3px 6px rgba(0,0,0,.08);
  opacity: 0.7;
  cursor: pointer;
    transition: all 0.5s;
}
.button a {
	text-decoration: none;
	color: black;
	font-weight: 600;
}

#cc-graphic {
	margin: 5rem auto;
	max-width: 100px;
}

