html {
  background: repeating-linear-gradient(
	45deg,
	rgb(54, 54, 54),
	rgb(54, 54, 54) 50px,
	rgb(43, 43, 43) 50px,
	rgb(43, 43, 43) 110px
  );
}

body {
	margin: 0;
	padding: 0;
	height: 100vh;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;

	background: transparent;
}

.top-bar {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 10px 30px;
	align-items: center;
}

.logo {
	position: relative;
	left: 3em;
	top: 1em;
	width: 250px;
}

.st0-0-1-14 {
	fill: #FFFFFF;
	clip-rule: evenodd;
	fill-rule: evenodd;
}

.st1-0-1-15{
	fill:#2A2A2A;
}

.st2-0-1-16 {
	fill: #FFC82F;
	clip-rule: evenodd;
	fill-rule: evenodd;
}

.socialButtons{
	width: max-content;
	bottom: auto;
	height: max-content;
	z-index: 100;
	position: fixed;
	right: 3em;
}

.socialButtons > svg {
	height: 3rem;
}

.fil0-0-1-19 {
	fill: white;
}


.player-container {
	position: relative;
	width: 60vh;
	/*height: 360vh;*/
}

.player-container svg {
	width: 100%;
	height: 100%;
	display: block;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #ffc82f;
	color: black;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


#scrollWrapper {
	width: 200px;
	overflow: hidden;
	white-space: nowrap;
	/*border: 1px solid #ccc;*/
	padding: 10px;
	box-sizing: border-box;
	position: absolute;
	/*background: #f9f9f9;*/
	color: #fff;
	top: 60%;
	left: 28%;
}

#nowPlaying {
	display: inline-block;
	white-space: nowrap;
	position: absolute;
	animation: scroll-text 15s linear infinite;
	font-size:12px;
	top:0
}

@keyframes scroll-text {
	from {
		left: 100%;
	}
	to {
		left: -100%;
	}
}

.label-svg {
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	width: 180px;
	height: auto;
	z-index: 3;
	pointer-events: none;
}

.label-svg svg {
	width: 100%;
	height: auto;
	display: block;
}

footer{
	left: 0;
	width: calc(env(safe-area-inset-left, 0px) + 100% + env(safe-area-inset-right, 0px));
	bottom: 0;
	z-index: 70;
	position: fixed;
	background-color: #2b2b2b;
}

.footer {
	display: flex;
	gap: 10px;
	padding: 10px;
	justify-content: space-between;
	background-color: #2b2b2b;
	width: 100%;
}

.footer svg {
	height: 50px;
	width: auto;
}

.left-svg{
	fill: #6D6E72
}

.right-svg{
	fill: #6D6E72
}

.flex-item {
	flex: 1;
	background-color: white;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	text-align: center;
}

.leftColumnElements-0-1-191 {
	gap: 1em;
	display: flex;
	align-items: center;
	margin-right: 3em;
	justify-content: flex-end;
	width:100%;
}

.centerColumnElements-0-1-192 > div > span {
	color: #6D6E72
}

.centerColumnElements-0-1-192 {
	display: flex;
	text-align: center;
	flex-direction: column;
	justify-content: center;
	width:100%;
}

.rightColumnElements-0-1-193 {
	gap: 0.5em;
	display: flex;
	align-items: center;
	margin-left: 3em;
	justify-content: flex-start;
	width:100%;
}

@media (max-width: 768px) {
	.socialButtons {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #111;
		color: white;
		padding: 1rem;
		z-index: 9999; /* ez biztosítja, hogy minden fölé kerüljön */
		text-align: center;
	}
	
	footer{
		left: 0;
		width: calc(env(safe-area-inset-left, 0px) + 100% + env(safe-area-inset-right, 0px));
		z-index: 70;
		position: fixed;
		background-color: #2b2b2b;
	}
	
	.footer {
		display: flex;
		gap: 0px;
		padding: 5;
		justify-content: space-between;
		background-color: #2b2b2b;
		width: 100%;
		margin-bottom:70px;
	}

	.footer svg {
		height: 25px;
		width: auto;
	}

	.flex-item {
		flex: 1;
		background-color: white;
		padding: 20px;
		border: 1px solid #ccc;
		border-radius: 8px;
		text-align: center;
	}

	.leftColumnElements-0-1-191 {
		gap: 1em;
		display: flex;
		align-items: center;
		margin-right: 5px;
		justify-content: flex-end;
		width:100%;
	}
	
	.footerCenter{
		line-height:1;
	}
	
	.centerColumnElements-0-1-192 > div > span {
		color: #6D6E72;
		font-size:12px
	}
	
	.centerColumnElements-0-1-193 > div > span {
		color: #6D6E72;
		font-size:12px
	}

	.centerColumnElements-0-1-192 {
		display: flex;
		text-align: center;
		flex-direction: column;
		justify-content: center;
		width:100%;
	}

	.rightColumnElements-0-1-193 {
		gap: 0.5em;
		display: flex;
		align-items: center;
		margin-left: 5px;
		justify-content: flex-start;
		width:100%;
	}
	
	.logo {
		margin: 0 auto;
		position: static;
		padding:0;
	}
}