﻿#NewAlbumWrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 50;
}
#NewAlbumBG {
	position: absolute;
	left: 15vw;
	top: 40vh;
	background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
	#0000ff, #00ff00,#ffff00, #ff0000);
	background-size: 400%;
	width: 70vw;
	height: 10vh;
	animation: steam 20s linear infinite;
	filter: blur(50px);
	z-index: 11;
}
#NewAlbum {
	position: absolute;
	left: calc(15vw + 2px);
	top: calc(40vh + 2px);
	width: calc(70vw - 4px);
	height: calc(10vh - 4px);
	background: rgb(255, 255, 255, 0.75);
	border-radius: 10px;
	z-index: 12;
	text-align:center;
	font-size: 3.5vh;
	line-height: 10vh;
}

#NewAlbumWrapperMob {
	position: absolute;
	width: 100%;
	height: 100%;
	visibility: visible;
	z-index: 10;
}
#NewAlbumBGMob {
	position: absolute;
	left: 8%;
	top: 30%;
	background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
	#0000ff, #00ff00,#ffff00, #ff0000);
	background-size: 400%;
	width: 84%;
	height: 20%;
	animation: steam 20s linear infinite;
	filter: blur(50px);
	z-index: 11;
}
#NewAlbumMob {
	position: absolute;
	left: calc(8% + 2px);
	top: calc(30% + 2px);
	width: calc(84% - 4px);
	height: calc(20% - 4px);
	background: rgb(255, 255, 255, 0.75);
	border-radius: 10px;
	z-index: 12;
	text-align:center;
	font-size: 160%;
	line-height: 2;
}
marquee {
	text-align: center; 
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

