body{
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-family: 'Arial';
}

a, i{
	text-decoration: none;
	font-size: 16px;
}

a:hover{
	cursor: pointer;
}

button{
	font-size: 16px;
}

h1, #timer{
	font-size: 34px;
}

h2{
	font-size: 28px;
}

.headerBox{
	margin-top: 100px;
	width: 100%;
}

.headerBox h1{
	margin-top: 50px;
	text-align: center;
}

.contentBox2, .contentBox3, .contentBox4 {
	display: none;
}

.contentBox1, .contentBox2, .contentBox3, .contentBox4{
	width: 720px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	padding: 0 10px 20px 0;
	border: 1px solid #DCDCDC;
	border-radius: 7px;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
}

.contentBox1 ul li{
	list-style: none;
}

.contentBox1 button, .contentBox2 button, .contentBox3 button, .contentBox4 button{
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: none;
	border-radius: 10px;
	background-color: #FFD700;
}

.contentBox1 button:hover, .contentBox2 button:hover, .contentBox3 button:hover, .contentBox4 button:hover{
	background-color: #F9DD16;
}

.contentBox2, .contentBox3, .contentBox4{
	padding: 20px;
}

.contentBox3 label{
	margin-left: 10px;
}

.contentBox3 button{
	margin-top: 50px;
}

footer{
	margin-top: 150px;
	height: 300px;
	background-color: #197ad1;
	padding: 100px 150px;
	color: white !important;
}

footer a, footer a:hover{
	color: white;
}

footer hr{
	width: 100%;
	color: white;
	opacity: 1 !important;
}

.info{
	display: flex;
	justify-content: space-between;
	font-size: 12px !important;
}

.info a{
	font-size: 12px !important;
}

#timer{
	font-weight: bold;
	justify-content: center;
	margin: 30px 0;
}

@media screen and (max-width: 450px){
	body{
		font-size: 15px;
	}
	button{
		font-size: 13px;
	}
	a, i{
		font-size: 13px;
	}
	h1, #timer{
		font-size: 25px;
	}

	h2{
		font-size: 18px;
	}
	.headerBox{
		margin-top: 50px;
	}
	.contentBox1, .contentBox2, .contentBox3, .contentBox4{
		width: 90%;
	}
	footer{
		margin-top: 100px;
		height: 200px;
		background-color: #197ad1;
		padding: 30px 40px;
		color: white !important;
	}
	.info{
		display: block;
	}
	.info div{
		margin-bottom: 15px;
	}
	.info a{
		float: right;
	}

}