/*
    filter: brightness(1.00);
    -o-filter: brightness(1.00);
    -moz-filter: brightness(1.00);
    -webkit-filter: brightness(1.00);

    filter: brightness(0.60);
    -o-filter: brightness(0.60);
    -moz-filter: brightness(0.60);
    -webkit-filter: brightness(0.60);

    filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    -moz-filter: blur(10px);
    -webkit-filter: blur(10px);

    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;

    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/123.svg");

    transform: translateX(-50%);
    transform: translate(-50%, -50%);

	backdrop-filter: blur(7px);
	-o-backdrop-filter: blur(7px);
	-ms-backdrop-filter: blur(7px);
	-moz-backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);

    transform: scale(1.2);
*/

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

	appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;

	font-family: Montserrat, Arial, sans-serif;
}

a, a:hover {
	color: #000;
	text-decoration: none;
}

a img {
	border: 0;
}

.desc {
	display: block;
}

.mobi {
	display: none;
}

.cont {
	width: 800px;
	margin: 0 auto;
	padding: 30px 20px;

	gap: 30px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.cont .img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	transform: scale(1);

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../img/masha.webp");

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.cont .img:hover {
	transform: scale(1.1);
}

.cont h1 {
	margin: 0;
	padding: 0;
	font-size: 25px;
	font-weight: 500;
}

.cont .text {
	font-size: 19px;
	font-weight: 300;
	line-height: 150%;
	text-align: center;
}

.cont .links {
	gap: 15px;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.cont .links a {
	width: 100%;
	height: 55px;
	overflow: hidden;
	position: relative;
	border-radius: 9px;
	transform: scale(1);
	font-size: 15px;

	display: flex;
	background: #9823b5;
	align-items: center;
	justify-content: center;

	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.cont .links a:after {
	content: "";
	position: absolute;
	overflow: hidden;
	top: 0;
	left: -10em;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, .1), rgba(255, 255, 255, .5), rgba(255, 255, 255, .1)) no-repeat -2em 0%;
	background-size: 9em 100%;
	transform: skewX(-50deg);
}

.cont .links a:hover {
	background: #881ea1;
	transform: scale(1.01);
}

.cont .links a:hover:after {
	left: 6em;
	transition: 0.7s linear;
	background-position: 150% 20%;
}

.cont .links a span {
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 800px) {
	.cont {
		width: 100%;
	}
}