*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/*--------------------*/
.body {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 700;
	color: #FFFFFF;
}
.content {
	padding: 35px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 35px;
	background: linear-gradient(184.02deg, #146149 3.24%, #0A2C22 101.1%);
	overflow: hidden;
	min-height: 100vh;
}
.body__portrait {
	transition: 0.4s ease-in;
	border-radius: 50px;
}
@media (any-hover: hover) {
.body__portrait:hover {
	transform: scale(2);
}
}
.body__title {
	font-size: 40px;
	text-align: center;
	color: #D66627;
}
.body__line {
	max-width: 536px;
	min-width: 320px;
}
.body__links {
	display: flex;
	flex-direction: column;
	/* gap: 10px; */
}
.body__link {
	color: #FFFFFF;
	text-transform: uppercase;
	text-align: center;
	font-size: 22px;
	width: 100%;
	background: #D66627;
	border-radius: 30px;
	padding: 10px 30px;
	text-decoration: none;
	border: 1px solid transparent;

	margin-bottom: 10px;
}
.body__link:hover {
	color: rgba(255, 255, 255, 0.5);
	position: relative;
	left: 2px;
}
.body__link:active {
	position: relative;
	top: 2px;
	background: #D66627;
	color: #FFFFFF;
	border-color: #fff;
}
