* { box-sizing: border-box; }
body {
	overflow: hidden;
	font-family: Verdana,Arial;
	font-size: 0.8rem;
	color: #707070;
	background-color: #282a3c;
	margin: 0;
}
a {
	text-decoration: none;
	color: #707070;
}
a:hover { color: #c00000; }
h1 {
	font-weight: normal;
	font-variant: small-caps;
	font-size: 28px;
	display: inline;
}
h3 {
	font-weight: normal;
}

#container {
	background: url("/images/HairWaves.jpg") no-repeat;
	background-size: contain;
}

@media screen and (min-width: 960px) {
	#container {
		position: absolute;
		top: 33%;
		left: 50%;
		width: 960px;
		height: 476px;
		transform: translate(-50%, -33%);
	}
}

#infos {
	font-style: italic;
	color: #fa2030;
	opacity: 0.0;
	transition: opacity 2s;
}
#infos:hover {
	opacity: 1.0;
}
#infos .authors, #infos .arts { display: none; }
#infos.album .authors { display: block; }
#infos.track .arts { display: block; }

#portraits {
	width: 100%;
	height: auto;
}
#portraits.blur {
	filter: blur(3px);
	opacity: 0.5;
}

.upper {
	position: absolute;
	top: 25%;
}
.lower {
	position: absolute;
	bottom: 10%;
}
.left {
	left: 1rem;
	text-align: left;
	width: 30%;
}
.right {
	right: 1rem;
	text-align: right;
	width: 30%;
}
#title, #duration { font-style: normal; }

#tracks {
	position: absolute;
	top: 0;
	left: 25%;
	width: 50%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	cursor: pointer;
}
#tracks img {
	width: 100%;
	opacity: 0.0;
	transition: opacity 2s;
}
#tracks.show img {
	opacity: 1.0;
}

#solo {
	position: absolute;
	opacity: 1.0 !important;
	animation: raise 5s forwards;
}
@keyframes raise {
	from { width: 25%; }
	to { top:0; left:0; width:100%; }
}

#solo.active {
	background-color: rgba(220,10,40,0.33);
	box-shadow: 0 0 8px 13px rgba(220,10,40,0.33);
	cursor: default;
}

#sign {
	position: absolute;
	display: none;
	animation: flash 1s forwards;
	pointer-events: none;
}
@keyframes flash {
	to { opacity:0.0; }
}

@font-face {
	font-family: flyerFont;
	src: url(/images/VLADIMIR.TTF);
}

.flyer {
	position: absolute;
	display: block;
	color: cyan;
	font-family: flyerFont;
	animation: fly 8s forwards;
	pointer-events: none;
}
@keyframes fly {
	to { transform:scale(25,25); opacity:0.0; }
}

#footer {
	text-align: center;
}
#footer div {
	display: flex;
	align-items: baseline;
}
#footer a {
	width: 20%;
}
#footer h1 {
	width: 60%;
	margin: 0;
}
