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

a {
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
}

body {
	/* background-color: rgb(50, 50, 50); */
	color: white;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-image: url('imgs/bg_tile.png');
	/* background-size: cover; */
}

#wrapper {
	width: 100%;
	height: 95vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* padding-top: 100px; */
}

#wrapper-about {
	width: 100%;
	/* height: 95vh; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

header {
	padding-top: 50px;
}

/* #players {
	position: relative;
} */

#menu {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 1200px;
	font-size: 1.6em;
}

/* #menu div {
	width: 35%;
} */

#players-line {
	display: flex;
	position: relative;
	/* transform: scale(.7,.7);
	width: 900px;
	margin-left: -170px; */

	margin-left: -10px;
}


.player-item {
	padding-top: 9px;
	cursor: progress;
	/* background-color: blue; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

.figure {
	z-index: 9;
}

.stand {
	margin-top: -30px;
	/* margin-bottom: -50px; */
	z-index: 1;
	/* user-select: none; */
	/* user-drag: none; */
    /* -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; */
	/* position: absolute;
	top: 0;
	left: 0; */
	position: relative;
	overflow: hidden;
}

#superplayer {
	position: absolute;
	top: 10px;
	right: 10px;
}

.talent {
	position: absolute;
	top: 14%;
	left: 25%;
	z-index: 90;
	transform: scale(0); /* Начальное состояние — масштабирование в точку */
    animation: appear .5s ease-out forwards;
	display: none;
}


#about-container {
	margin-top: 50px;
	width: 1100px;
	height: auto;
	padding: 100px;
	border: 1px solid #456d70;
	background-color: #1D4D5D;
	text-align: center;
}

#about-container p {
	margin: 30px 0;
}

#about-container p span{
	font-weight: bold;
}

.about {
	max-width: 210px;
	max-height: 130px;
}

@keyframes appear { /* Описание ключевых кадров анимации */
	0% {
		padding-top: 90px;
		opacity: 0; /* Начало прозрачность = 0 */
		transform: scale(0); /* Масштабируем элемент до нуля */
	}

	70% {
		opacity: 1; /* Конечная непрозрачность = 1 */
		transform: scale(1.2); /* Возвращаем исходный размер элемента */
		padding-top: 10px;
	}
	
	100% {
		opacity: 1; /* Конечная непрозрачность = 1 */
		transform: scale(1); /* Возвращаем исходный размер элемента */
		/* padding-top: unset */
	}
}
	

