* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	width: 960px;
	background: lightyellow;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	font-family: Helvetica, Arial, sans-serif;
	line-height: 1.7;
    font-size: 20px;
	

}

p
 {
	text-indent: 45px;
}

h1 {
	padding-top: 10px;
	padding-bottom: 10px;
	color: #111E6C;
    font-size: 35px;
    
}

h2 {
	color: #111E6C;
    font-size: 25px;
    
}
h3 {
	color: #111E6C;
    font-size: 20px;
}

figure {
	display: block;
	text-align: center;
	
}

img {
	padding-top: 50px;
	width: auto;
	height: auto;
}

figcaption {
	text-align: center;
}

.button {
    background-color: #2A579A; /* Green */
    border: none;
    color: white;
    padding: 6px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 60px;
    width: 150px;
    height: 40px;


}
.top {
	padding-top: 50px;
}
.button {
    -webkit-transition-duration: 0.4s; 
    transition-duration: 0.4s;
}

.button:hover {
    background-color: green; /* Green */
    color: white;
}
.button:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}