.artist-cover {
	max-width: 310px;
	border-radius: 50%;
}

.artist-name {
	font-size: 26px;
}

.login-cover {
	position: fixed;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
.login-btn {
	width: 180px;
	height: 80px;
	outline: none;
	cursor: pointer;
	background: none;
	transition: 0.5s;
	font-size: 22px;
	border-radius: 5px;
	border: 2px solid green;
	color: green;
	font-family: 'Lato', sans-serif;
}

.login-btn:hover {
	border: none;
	color: white;
	font-size: 24px;
	transform: scale(1.1);
	background-color: green;
	transition: all 0.3s ease-in-out;
}

.hidden {
	display: none;
}
