@import url("/css/fonts.css");

body
{
	--min-content-width: 800px;
	font-family: caviar;
	color: #fff;
	background: #000;
	min-width: var(--min-content-width);
	max-width: 1920px;
	margin: auto;
	font-size: 16px;
	line-height: 1.6;
}

.mainWrapper
{
	min-height: calc(100% - 25px - 20px - 50px);
}

.headerContainer
{
	width: 100%;
	overflow: hidden;
	text-align: center;
	height: 400px;
}

.headerTextContainer
{
	position: absolute;
	top: 0px;
	width: 100%;
    min-width: var(--min-content-width);
    max-width: 1920px;
	font-family: polar;
	text-align: center;
	font-size: 80px;
	user-select: none;
	pointer-events: none;
}

.headerText
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
}

.subtitle
{
	font-size: 20px;
	width: 100%;
	display: contents;
	font-family: caviar;
}

.icon
{
	font-family: fontello;
}

.headerLinks
{
	font-family: fontello;
    font-size: 25px;
    letter-spacing: 15px;
    position: relative;
    top: -100px;
    user-select: none;
	width: fit-content;
	margin: auto;
}

.main
{
	width: 76%;
	min-width: var(--min-content-width);
	margin: auto;
}

.links
{
	display: block;
	width: fit-content;
	margin: auto;
	margin-bottom: 20px;
	user-select: none;
	text-align: center;
}

.link
{
	font-size: 35px;
	padding: 20px;
	letter-spacing: 10px;
	text-align: center;
	display: inline-block;
	line-height: normal;
}

.link a
{
	color: inherit;
}

a
{
	color: #22ce8d;
	text-decoration: inherit;
}

a:hover
{
	color: #85ffd2;
}

a:active
{

}

.link::after
{
	background-color: #0a8255;
    width: 100%;
    height: 1px;
    content: " ";
    display: block;
    top: -15px;
    position: relative;
    z-index: -1;
}

.divider
{
	text-align: left;
	font-size: 20px;
	padding: 20px;
	padding-bottom: 10px;
	letter-spacing: 10px;
	user-select: none;
	line-height: normal;
}

.divider::after
{
	background-color: #0a8255;
    width: calc(100%);
    height: 1px;
    content: " ";
    display: block;
    top: -25px;
    position: relative;
    z-index: -1;
}

.content
{
	padding: 20px;
	background-color: #050505;
	margin-left: 50px;
	margin-right: 50px;
	border-left: 2px solid #0a8255;
	border-radius: 10px;
	margin-bottom: 20px;
}

.footer
{
	background-color: #050505;
	padding: 10px;
	padding-left: 15px;
	min-width: calc(var(--min-content-width) - 30px);
	margin-top: 50px;
	height: 25px;
}

.flexContainer
{
	display: flex;
	flex-wrap: wrap;
}

.flexBox
{
	width: 300px;
	height: 300px;
	flex: 0 0 auto;
	border: 1px solid;
	margin: 5px;
	overflow: hidden;
}

.flexImage
{
	width: 100%;
	height: 100%;
}

.flexText
{
	background-color: rgba(0.0, 0.0, 0.0, 0.8);
	height: 30px;
	position: relative;
	padding-left: 10px;
	top: -30px;
	user-select: none;
}

a .flexText
{
	color: #fff;
}

.musicInfo
{
	opacity: 0;
    position: relative;
    width: 100%;
    height: 100%;
    top: -300px;
    background: rgba(0, 0, 0, 0.7);
	transition: opacity 0.25s ease-in-out;
	user-select: none;
	pointer-events: none;
}

.musicInfo:hover
{
	opacity: 1;
}

.flexBox:hover .musicInfo
{
  opacity: 1;
}

.musicTitle
{
	color: white;
	font-size: 26px;
	text-align: center;
}

.musicSubtitle
{
	color: white;
	font-size: 16px;
	text-align: center;
}

.musicLinks
{
	font-size: 30px;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	padding-left: 5px;
	padding-right: 5px;
	width: calc(100% - 10px);
	position: absolute;
	top: 200px;
}

.musicLinks a
{
	user-select: auto;
	pointer-events: auto;
}

.musicType
{
	color: white;
	font-size: 14px;
	padding: 5px;
	background: hsl(7deg 90% 35%);
	width: fit-content;
	margin: auto;
	margin-bottom: 30px;
}

.album
{
	background: hsl(218deg 90% 35%);
}

.ep
{
	background: hsl(158deg 90% 35%);
}