/*cascading stylesheet, easy to make just define by html tag*/

html{
	background-color: #0000cd;
	background-image: url(content/LogoTranspWP.webp);
	background-position: center;
	background-size: 55%;
	background-repeat: no-repeat;
}

/*.container{
	display: flex;
	top: 50vh;
}*/

.container{
	display: flex;
	align-items: center;
	margin-top: 75vh;
	justify-content: center;
	max-width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.icecast-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.icecast-badge.live {
	background: #1A1A1A;
	color: #22C55E;
	border: 1px solid #22C55E;
}
.icecast-badge.offline {
	background: #1A1A1A;
	color: #6B7280;
	border: 1px solid #374151;
}
.icecast-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.icecast-badge.live .icecast-dot {
	background: #22C55E;
	animation: icecast-pulse 2s ease-in-out infinite;
}
.icecast-badge.offline .icecast-dot {
	background: #6B7280;
}
@keyframes icecast-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}