* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	font-family: "Merriweather Sans";
	font-weight: 400;
	box-sizing: border-box;
}

.navbar-brand {
	font-size: 1.5rem;
	font-family: "Pacifico";
	text-shadow: 2px 2px 2px #000000;
}

.navbar-nav {
	margin-left: 50px;
}

.navbar-nav > * {
	margin-right: 5px;
}

@media (max-width: 992px) {
	.navbar-nav {
		margin-left: 0;
	}
	.navbar-nav {
		margin-right: 0;
	}
}

h1 {
	text-shadow: 2px 2px 2px black;
}

.list-group-item {
	color: white;
	text-shadow: 1px 1px black;
}

.oneAudio {
	transition: background-color 0.2s;
}

.active,
.oneAudio:hover {
	background-color: rgba(201, 24, 74, 0.5);
	cursor: pointer;
}

.dropdown-item:active {
	background-color: rgba(201, 24, 74, 0.8);
}

progress {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 10px;
	background-color: #212529;
	border: 1px solid rgba(201, 24, 74, 0.75);
	border-radius: 0;
}

progress::-webkit-progress-bar {
	background-color: #212529;
}

progress[value]::-webkit-progress-value {
	background-color: #c9184a;
}

progress[value]::-moz-progress-bar {
	background-color: #c9184a;
}

#player-play,
#player-prev,
#player-next {
	font-size: 3vw;
	cursor: pointer;
}

#player-card,
#player-image {
	border-radius: 50px;
}

.artists {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.artist-item {
	position: relative;
	flex-basis: calc(24% - 20px);
	margin: 15px;
}

@media (max-width: 1200px) {
	.artist-item {
		flex-basis: calc(25% - 20px);
	}
}

@media (max-width: 992px) {
	.artist-item {
		flex-basis: calc(33.33% - 20px);
	}
}

@media (max-width: 768px) {
	.artist-item {
		flex-basis: calc(40% - 20px);
	}
}

@media (max-width: 576px) {
	.artist-item {
		flex-basis: calc(100% - 20px);
	}
}

.img-wrap {
	width: 100%;
	height: 20%;
	padding-top: calc(100% + 150px);
	overflow: hidden;
}

.artist-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-name {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10px;
	color: white;
	font-size: 18px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.img-name-bg {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px;
}

.img-wrap:hover .img-name {
	opacity: 1;
	pointer-events: auto;
}

.artist-show h1 {
	font-size: 40px;
	text-shadow: 1px 4px 2px #c9184a;
}

.artist-show img {
	height: 70vh;
	width: 90%;
	object-fit: cover;
	border: 5px inset #c9184a;
	border-radius: 25px;
}

.artist-show p {
	text-align: justify;
	font-size: 18px;
	font-weight: 300;
}

.st-elem {
	z-index: 1;
	top: 70px;
}
