body {
	font-family: helvetica;
}

.top-centered-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
    margin-top: 2%;
	width: 15%;
	height: auto
}

.centered-div {
	text-align: center;
	margin-top: 1%;
	font-size: 2vw
}

.a-button {
	color: inherit;
	background-color: #c8c8c8ff;
	text-decoration: none;
	border-radius: 10px;
	padding: 0 5px;
}

.fade {
	animation-name: fade;
	animation-duration: 0.5s;
}

@keyframes fade {
  0% {opacity: 1.0;}
  50% {opacity: 0.0;}
  100% {opacity: 1.0;}
}