@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  src: url(Montserrat-Medium.ttf);
}

@font-face {
	font-family: 'Montserrat';
	font-weight:bold;
	font-style: normal;
	src: url(Montserrat-Black.ttf);
  }
  
body {
	margin:0;
	background-color:#FC4C02;
	font-family:Montserrat;
	font-size:18px;
	line-height:22px;
	color:white;
}

a {
	color:white;
}

.title {
	padding-top:20px;
	font-family:Montserrat;
	font-size:30px;
	line-height:40px;
	font-weight: bold;
	text-align:center;
}

.buttons {
	text-align:center;
	font-weight: normal;
}

.pdf {
	margin: 16px auto;
	width: 500px;
	background-color: white;
	border: none;
	border-radius: 8px;
	padding: 16px 24px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.pdf:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.pdf:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pdf a {
	color: #FC4C02;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.5px;
	display: block;
}

.pdf a i {
	font-size: 20px;
	vertical-align: middle;
	margin-right: 10px;
}


@media screen and (max-width: 1000px) {
	
}	
	

@media screen and (max-width: 680px) {
	
	
.pdf {
	width: 90%;
	max-width:300px;
	}
}

