@charset "UTF-8";
/* CSS Document */

/* Add Fonts */

@font-face {
    font-family: signature;
    src: url("The-Suavity.ttf");
}


/* Reset the basics */

* {
    margin: 0;
    padding: 0;
    border: none;
}
html, body {
    width: 100%;
	margin: 0;
	padding: 0;
}
body {
	box-sizing: border-box;
    position: relative;
    min-height: 100%;
	font-family: "Muli",Helvetica,Arial,Sans-serif;
	text-decoration: none;
}
div {
	display: block;
}
img {
	border: 0;
}

a {
	color: #204D09;
}

.mob { display:none; }


/* Welcome Banner */

body {
	background-image: url(../images/websitebg-blur.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


.signature {
	width: 900px;
	height: 300px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*background-image: url(../images/websign.png);*/
	background-size: cover;
	background-position: 0% 0%;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

.profile-pic{
	width: 200px;
	height: 200px;
	border: 2px solid #FFF;
    border-radius: 50%;
    background-color: #000;
    margin: 0 auto;
    overflow: hidden;
    display: inherit;
    justify-content: center;
}

.profile-pic img{
    width: 200px;
}

.signed {
	width: 100%;
	text-align: center;
	font-family: signature, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 120px;
	color: #FFF;
	text-shadow: 0px 0px 5px #000;
}

.roles {
	width: 100%;
	margin-top: -50px;
	text-align: center;
	color: #DDD;
	font-size: 50px;
	text-shadow: 0px 0px 3px #000;
}

@media screen and (max-width:999px) {
	
	.signature {
		width: 600px;
		height: 200px;
	}

}

@media screen and (min-width:768px) and (max-width:999px){ /* iPad Air 2 Portrait */
	
	.signature {
		width: 600px;
		height: 200px;
	}

}

@media screen and (min-width:568px) and (max-width:767px){ /* iPod Touch and iPhone 6 Landscape */
	
	.signature {
		width: 600px;
		height: 200px;
	}
	
}

@media screen and (max-width:567px) { /* iPod Touch and iPhone 6 Portrait */
	
	.signature {
		width: 300px;
		height: 100px;
	}
	
}
