@font-face {
  font-family: 'MazzardH';
  src: url('./fonts/MazzardH-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'MazzardH';
  src: url('./fonts/MazzardH-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font-family: 'MazzardH';
	background-image: url('../images/background.jpeg');
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

a {
	text-decoration: none;
}

.content {
	max-width: 500px;
	width: 100%;
	position: relative;
	z-index: 100;
}

.content .top {
	background-color: white;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	padding: 15px 15px 10px;
}

.content .top img {
	height: 50px;
	width: 50px;
}

.content .main {
	background-color: #e8ebf1;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
	padding: 15px 20px;
}

.content .main .ava {
	display: flex;
	justify-content: center;
}

.content .main .ava img {
	height: 150px;
	width: 150px;
	border-radius: 50%;
}

.content .main h1 {
	text-align: center;
	margin-bottom: 15px;
}

.content .main p {
	text-align: center;
	max-width: 350px;
	margin: 0 auto 15px;
	font-size: 15px;
}

.buttonGroup {
	display: flex;
	justify-content: space-between;
}

.buttonGroup a {
	border-radius: 8px;
	width: 49%;
	color: white;
	padding: 20px 10px;
	text-align: center;
	transition: 0.3s;
}

.buttonGroup a:first-child {
	background-color: #006cff;
	
}

.buttonGroup a:last-child {
	background-color: #6b747f;
}

.buttonGroup a:hover {
	transform: scale(1.05);
}

.filter {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
}

@media screen and (max-width: 600px) {
	.buttonGroup a {
		font-size: 11px;
	}

	.content .main .ava img {
		width: 120px;
		height: 120px;
	}

	.content .top img {
		height: 40px;
		width: 40px;
	}
}

@media screen and (max-width: 385px) {
	.buttonGroup a {
		font-size: 10px;
	}

	body {
		padding: 0 15px;
	}

	.content .main {
		padding: 15px;
	}
}








