body {

	all: unset;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 100px 10px;
	gap: 75px;

	position: relative;
	max-width: 100%;
	min-height: 100vh;
	box-sizing: border-box;

	background:
			linear-gradient(rgba(244, 244, 244, 0.50), rgba(244, 244, 244, 0.50)),
			url(images/background.jpg) no-repeat;
	background-size: cover;

}

@media only screen and (max-width: 575px) {
	.title {
		display: inline-block;

	}
}

.title {

	all: unset;
	font-family: 'Roboto Flex', 'sans-serif';
	font-style: normal;
	font-weight: 300;
	font-size: 80px;
	gap: 20px;

	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;

	color: #262626;

	flex: none;
	order: 0;
	flex-grow: 0;
	flex-flow: row wrap;

}

.title .bold{

	font-weight: 600;

}

.button_group {

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0;
	gap: 15px;

	flex: none;
	flex-grow: 1;

}

.button {

	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px 20px;
	gap: 10px;
	text-decoration: none;

	width: 100%;
	min-width: 310px;
	max-width: 450px;

	background: rgba(39, 39, 39, 0.70);
	box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	box-sizing: border-box;

	flex: none;
	order: 0;
	flex-grow: 0;

}

.button:hover {

	background: rgba(39, 39, 39, 0.9);

}

.button_element {

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0;
	gap: 10px;

	flex: none;
	align-self: stretch;
	flex-grow: 1;

}

.button_element:first-of-type {

	min-width: 200px;

}

.button_element .text {

	all: unset;
	font-family: 'Roboto Flex', 'sans-serif';
	font-style: normal;
	font-weight: 3010;
	font-size: 48px;
	display: flex;
	align-items: center;
	text-align: center;

	color: #F4F4F4;


}

.button_element .icon {

	all: unset;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 7px;
	gap: 10px;

	width: 48px;
	height: 48px;

	background: #F4F4F4;
	border-radius: 100px;

}

.button_element img {

	all: unset;
	width: 100%;
	height: auto;
	border-radius: 100px;


}