@charset "utf-8";
/* CSS Document */
.bottom-item{
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.top-item {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.button {
	border: none;
	height: 40px;
	width: 168px;
	padding-top: 4px;
	margin-top: 5px;
	margin-bottom: 15px;
	border-radius: 5px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.7);
	font-size: 1.4rem;
	font-weight: 600;
	background-color: #0054A6;
	color: white;
	transition: all .09s ease-out;
}
.button:hover{
	padding-top: 1px;
	font-size: 1.5rem;
	font-weight: 700;
	border: 1.5pt solid red;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.button:active{
	padding-top: 2px;
	font-size: 1.5rem;
	background-color: darkslateblue;
	font-weight: 700;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.row{
	text-align: center;
}

@media only screen 
and (min-width : 768px) {
}
