body {
	background: #ff28f8;
	padding: 0;
	margin: 0;
}

body * {
	box-sizing: border-box;
}

.container {
}

.container.home__container {
	width: 100vw;
	height: 100vh;
	padding: 3vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: "Special Gothic Condensed One", sans-serif;
	color: white;
}

.home__container h1,
.home__container h2,
.home__container h3 {
	font-weight: 400;
}

.home__logo {
	width: 68%;
	margin: 0 0 40px;
}

.home__line {
	background: white;
	height: 4px;
	width: 20%;
	margin: 0 auto;
}

.home__artists {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.home__artist {
	display: flex;
	border: 1px white solid;
}

.home__artist:hover {
	background-color: #d50cce;
	cursor: pointer;
}

.home__artist-image {
	max-width: 120px;
	width: 10vw;
}

.home__artist-name {
	min-width: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.home__artists {
		display: block;
	}

	.home__artist:not(:last-of-type) {
		margin-bottom: 20px;

	}
	.home__artist-image {
		width: 60px;
	}
	.home__logo {
		width: 90%;
	}
}

