@import url(https://fonts.googleapis.com/css?family=Gloria+Hallelujah);
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Gloria Hallelujah', cursive;
	min-height: 100dvh;
	background: url(/assets/bg-cheker.png) top left;
}

.container {
	width: 90%;
	max-width: 1200px;
	padding: 0 20px;
	margin: 20px auto;
	border: 2px solid #000;
	min-height: 90%;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	position: relative;
}

#sound-btn {
	z-index: 200;
	position: absolute;
	top: 10px;
	right: 10px;
	width:30px;
	height: 30px;
	display: block;
	cursor: pointer;
}

h1 {
	font-size: 60px;
	color: #5a5816;
	transform: rotate(-10deg);
	margin: 0px;
	font-weight: normal;
}

a {
	text-decoration: underline;
	color: #5e96be;
	padding-bottom: 20px;
	font-weight: bold;
	font-size: 1.2rem;
}

.rank-row-header {
	position: relative;
}
.rank-row-header::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	height: 1px;
	background: #000;
}

#ranklist-data-wrapper {
	text-align: center;
	width: 100%;
}

.rank-row-profile-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
#ranklist-data-wrapper  td {
	padding:5px 0;
}

@media (max-width: 600px) {
	.rank-row-profile {
		display: none;
	}
}
