.jumbotron {
	width: 100wh;
	height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 20px;
	box-sizing: border-box;
	z-index: 3;
	color: white;
}

.jumbotron ul li {
	margin-inline: 10px;
	text-decoration: none;
	transition: 0.2s;
}

.jumbotron ul li:hover {
	color: gray;
	cursor: pointer;
}

.jumbotron canvas {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
	width: 100%;
}

.jumbotron .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 1;
	align-items: center;
	height: 100%;
	grid-column: 2;
}

.jumbotron .wrap {
	display: grid;
	grid-template-columns: auto auto auto;
	height: 100%;
	width: 100%;
	align-content: center;
	justify-content: space-between;
	position: relative;
}

.jumbotron span {
	position: absolute;
	top: 38%;
	border-radius: 5px;
	height: 150px;
	text-align: center;
	line-height: 150px;
	width: 30px;
	font-weight: 600;
	opacity: 0;
	display: none;
}

.jumbotron span:last-child {
	right: 0;
}

.jumbotron .show {
	opacity: 1;
	display: block;
}

.content h1 {
	font-size: 5em;
}

.content p {
	font-size: 1.4em;
}

.about {
	top: 0;
	position: relative;
}

.about p {
	width: 80%;
	text-align: center;
}

section.socialmedia {
	background-color: rgb(0, 0, 0);
	color: rgb(231, 231, 231);
	box-sizing: border-box;
}

section.music {
	background-color: rgb(0, 0, 0);
	color: rgb(231, 231, 231);
}

section.music .albums {
	display: grid;
	grid-template-columns: auto auto;
	width: 90%;
	gap: 15px;
}

.scm {
	display: none;
	padding: 60px;
	margin-bottom: 20px;
	width: 70%;
}

#socialmedia {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
}

#album {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	align-items: center;
	justify-content: center;
	height: 350px;
}

.album .button {
	position: relative;
	box-sizing: border-box;
	align-self: center;
	width: 200px;
	transition: 0.2s;
}

.album .button:hover {
	color: gray;
	cursor: pointer;
	background-color: azure;
}

#album h3 {
	margin-block: 10px;
	text-align: center;
}

#album img {
	border-radius: 14px;
}

@media only screen and (max-width: 500px) {
	.jumbotron ul {
		align-self: center;
		font-size: 0.9em;
	}

	.jumbotron .content {
		font-size: 0.8em;
	}

	.socialmedia #socialmedia {
		align-items: center;
	}

	section.music {
		padding: 0;
	}

	#album {
		height: 250px;
		background-color: rgba(0, 0, 0, 0);
		padding: 0;
		font-size: 0.8em;
	}

	#album img {
		width: 120px;
	}

	.album .button {
		border: 10px;
		background-color: rgba(0, 0, 0, 0);
		font-size: 1em;
		width: 100px;
		align-items: end;
		padding-block: 5px;
	}

	.album .button:hover {
		background-color: rgba(0, 0, 0, 0);
	}

	.about p {
		top: 0;
		width: 95%;
		text-align: center;
		font-size: 0.8em;
	}
}