#cr-jyemco {
	height: 100vh;
	align-items: center;
	background: var(--main-background);
	color: var(--content-text-color);
}

#cr-yrncms{
	flex-direction: column;
	row-gap: 25px;
}

.container-albums{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.container-album {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.albums {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.albums span {
	font-size: 14px;
	font-weight: 300;
}

.album-image {
	width: 380px;
	height: 380px;
}

.album-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-songs {
	min-width: 490px;
	display: flex;
	flex-direction: column;
	gap: 20px;

}

.album {
	text-transform: uppercase;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.album-title {
	width: 65%;
}

.songs {
	display: flex;
	flex-direction: column;
}

.song:first-child{border-top: 1px solid #605e5e;}

.song {
	width: 100%;
	border-bottom: 1px solid #605e5e;
	padding: 20px 10px;
	display: flex;
	justify-content: space-between;
}

.song-name {
	display: flex;
	column-gap: 20px;
}

.more-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.more-links a {
	color: rgb(224,251,171);
}

.more-links a::before{
	content: "//";
}


@media(max-width: 1024px) {
	.container-songs {
		min-width: 320px;
	}
}

@media(max-width: 834px){
	.album-image {
		width: 290px;
		height: 290px;
	}
}

@media(max-width: 768px){
	#cr-jyemco {
		height: auto;
	}

	#cr-yrncms{
		padding: 60px 0;
	}

}

@media(max-width: 480px) {

	.album-image {
		width: 260px;
		height: 260px;
	}

	#cr-yrncms {
		row-gap: 20px;
	}

	.social-media {
		gap: 10px;
	}
}