:root {
	font-size: 18px;
	--color: #F50690;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.es, body.en, body.eu {
	display: inherit;
}
.es, .en, .eu {
	display: none;
}
html[lang='es'] .es, html[lang='en'] .en, html[lang='eu'] .eu {
	display: block;
}

html, body {
	height: 100%;
}

body {
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.03em;
	max-width: 110rem;
	margin: 0 auto;
	position: relative;
	box-shadow: 1px -1px 1px var(--color), -1px -1px 1px var(--color);
	display: flex;
	flex-flow: column nowrap;
}

header, section, footer {
	width: 100%;
	box-sizing: border-box;
	padding: 1.5rem;
	display: flex;
	justify-content: space-between;
}

p {
	margin-bottom: 2rem;
}
p:last-child {
	margin-bottom: 0;
}
em {
	font-style: italic;
}
img {
	margin-bottom: 1rem;
}

header.main-header {
	border-bottom: 2.22rem solid var(--color);
}
	ul {
		display: flex;
	}
		ul li {
			margin: 0 .25rem;
			cursor: pointer;
		}

		html[lang='es'] .lang-es, html[lang='en'] .lang-en, html[lang='eu'] .lang-eu {
			border-bottom: 1px solid #000
		}

main {
	margin-bottom: auto;
}

header.artist-header {
	font-size: 1.88rem;
	color: var(--color);
	border-bottom: 0.11rem solid var(--color);
}
	header.artist-header > * {
		flex: 1 0 33.33%;
		text-align: center;
	}
		header.artist-header > *:first-child {
			text-align: left;
		}
		header.artist-header > *:last-child {
			text-align: right;
		}

section.artist-content {
	color: var(--color);
	border-bottom: 0.11rem solid var(--color);
}
	section.artist-content a {
		display: inline-block;
		background: var(--color);
		color: #fff;
		border-radius: 1rem;
		padding: 0 .5em .1em;
		text-decoration: none;
		box-shadow: 0 0 0em var(--color);
		transition: box-shadow .4s ease, background .4s ease, color .4s ease;
	}
		section.artist-content a:hover {
			color: var(--color);
			background: #fff;
			box-shadow: 0 0 .5em var(--color);
		}

#counter::before {
	content: "\2192  ";
}
html[lang='es'] .day::before, html[lang='en'] .day::before {
	content: 'd ';
}
html[lang='eu'] .day::before{
	content: 'e ';
}

footer.artist-footer {
	font-size: 1.88rem;
	color: var(--color);
	border-bottom: 0.11rem solid var(--color);
}

footer.main-footer {
	border-top: 0.11rem solid var(--color);
	margin-top: 8.88rem;
}
	footer.main-footer > * {
		flex: 0 0 calc(33.33% - 6rem);
	}

@media screen and (max-width: 750px) {
	header, section, footer {
		padding: 1rem;
	}
	header.artist-header, footer.artist-footer {
		font-size: 1rem;
	}
	header.artist-header > * {
	  flex: 1 1 auto;
	}
	footer {
		flex-flow: column nowrap;
	}
	footer.main-footer > * {
		flex: 1 0 auto;
	}
}