/* Jomar Cardino */
/* CSS3 */
/* w3schools.com */

html {
	scroll-behavior: smooth;
}
	
body {
	background-color: lightgray;
}

h1 {
	font-size: 30px;
	text-align: center;
}

p {
	font-size: 20px;
	text-align: center;
}

h2 {
	font-size: 25px;
	text-align: center;
}

h3 {
	font-size: 25px;
	text-align: center;
}

h4 {
	font-size: 25px;
	text-align: center;
}

h5 {
	font-size: 25px;
	text-align: center;
}

h6 {
	text-align: justify;
	font-weight: normal;
	font-size: 25px
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 25%;
}

.button {
  background-color: black;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 20%;
  transition-duration: 0.2s;
}

.button:hover {
	background-color: lightgray;
	color: black;
	border-radius: 20%;
}

.top {
	color: black;
	text-decoration: none;
}
	