@charset "utf-8";
/* CSS Document */

a.email_button {
	
	display: inline-block;
	padding: 0.8em 1.2em;
	border: 0.1em solid #ED1C24;
	margin: 0 0.3em 0.3em 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Gill Sans MT';
	font-size: 24px;
	color: #ED1C24;
	text-align: center;
	transition: all 0.2s;

}

a.email_button:hover {

	color: #000000;
	background-color: #ED1C24;

}

.cv_button {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 40px;
}

a.project_button {
	display: inline-block;
	padding: 0.8em 1.2em;
	border: 0.1em solid #ED1C24;
	margin: 0 0.3em 0.3em 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Gill Sans MT';
	font-size: 24px;
	color: #ED1C24;
	text-align: center;
	transition: all 0.2s;

}

a.project_button:hover {

	color: #000000;
	background-color: #ED1C24;

}

a.publication_button {
	
	display: block;
	padding: 0.8em 1.2em;
	border: 0.1em solid #ED1C24;
	margin: 0 0.3em 0.3em 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Gill Sans MT';
	font-size: 24px;
	color: #ED1C24;
	text-align: center;
	transition: all 0.2s;

}

a.publication_button:hover {

	color: #000000;
	background-color: #ED1C24;

}

@media screen and (max-width: 560px){
	
	a.email_button {
		font-size: 16px;
	}
	
	.cv_button {
		margin-top: 20px;
		margin-bottom: 20px;
		width: 80%;
	}
	
	a.project_button {
		display: block;
		margin: 0.4em auto;
		font-size: 18px;
	}
	
	a.publication_button {
		display: block;
		margin: 0.4em auto;
		font-size: 18px;
	}
	
}