html {
	--max-content-width: 960px;
	--theme: #ea3687;

	background: black;
	color: white;
	font-size: 20px;
}

@media (max-width: 541px) {
	html {
		font-size: 16px;
	}
}

.track {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin-block: 1rem;
}

iframe.sm {
	flex: 1;
	max-width: 800px;
}

iframe.playlist {
	width: 100%;
	max-width: 600px;
	margin-block: 0.6rem;
}

body {
	font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
	margin: 0;
}

a {
	border-radius: 0.3rem;
	color: white;
	display: inline-block;
	font-weight: 600;
	text-decoration: underline;
}
a:hover,
a:focus {
	background-color: var(--theme);
	color: white;
	margin-inline: -0.3rem;
	padding-inline: 0.3rem;
	text-decoration: none;
}

h2 {
	font-family: 'Permanent Marker', sans-serif;
	font-size: 3rem;
	font-weight: 900;
	margin: 0;
	text-transform: uppercase;
}

p {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 20px;
}

.no-padding {
	padding: 0;
}

section {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 2rem 0;
	text-align: center;
}
section:not(.no-padding) > * {
	max-width: var(--max-content-width);
	width: 100%;
}
section h2 {
	color: white;
	margin-bottom: 0.6rem;
	text-shadow: 5px 5px 0px var(--theme);
}

header {
	align-items: center;
	background-image: url('../img/header.jpg');
	background-position: center;
	background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	display: flex;
	flex-direction: column;
	min-height: 70vh;
	justify-content: space-between;
	padding-top: 2rem;
}
header img {
	color: white;
	display: block;
	fill: white;
	max-width: 24vh;
	width: 60%;
}

header .message {
	font-size: 2rem;
	font-weight: 900;
	margin-block: 1rem;
	margin-inline: -0.3rem;
    padding-inline: 0.3rem;
	text-align: center;
}

.socials {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	grid-column: 1fr;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.socials a {
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 0.5rem;
	color: white;
	display: flex;
	justify-content: center;
	padding: 0.3rem;
	text-decoration: none;
	width: 5rem;
}
.socials a svg {
	color: white;
}
.socials a:hover,
.socials a:focus {
	margin: unset;
}

.awards {
	display: flex;
	min-width: 80%;
	max-width: 60px;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.awards > div {
	display: flex;
	justify-content: center;
	flex: 1 1 100px;
	max-width: 400px;
}

.awards img {
	max-width: unset;
	width: 100%;
}

.shows {
	display: flex;
	flex-direction: column;
	text-align: start;
}
.shows .message {
	font-size: 1rem;
	font-style: italic;
	opacity: 0.6;
}
.show {
	display: grid;
	gap: 1rem;
	grid-template-columns: 0.8fr 1fr 0.7fr;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	padding-block: 0.3rem;
	border-top: 1px solid rgba(255,255,255, 0.2);
}
.show.announcement {
	background-color: rgba(0, 255, 0, 0.3);
}
.show:last-child {
	border-bottom: 1px solid rgba(255,255,255, 0.2);
}
.show .date {
	font-weight: 800;
	text-transform: uppercase;
	text-align: end;
}

footer {
	align-items: center;
	color: white;
	display: flex;
	flex-direction: column;
	padding: 2rem 0;
}
footer p {
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
}
footer ul {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	margin-bottom: 0.6rem;
	opacity: 0.7;
	padding: 0;
}
footer ul li {
	display: block;
	height: 1.5rem;
	width: 1.5rem;
}
footer ul li a {
	display: flex;
	padding: 0.3rem;
	width: 1rem;
	height: 1rem;
}
footer ul li a:hover,
footer ul li a:focus {
	margin: unset;
}
footer a {
	color: rgba(255, 255, 255, 0.3);
}
footer .signature {
	font-size: 0.6rem;
	opacity: 0.6;
}

@media (max-width: 960px) {
	.socials {
		gap: 0.6rem;
	}
	.socials a {
		width: 3rem;
	}

	.show {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		gap: 0;
		padding-block: 0.9rem;
		text-align: center;
	}
	.show .date {
		font-size: 1.2rem;
	}
	.show .time {
		font-size: 0.9rem;
	}
}

@media (max-width: 350px) {
	.socials {
		gap: 0.3rem;
	}
	.socials a {
		width: 2.7rem;
	}
}