body {
	/*background-color: black;*/
	color: white;
	background-image: url('images/purple_sky.png');
	background-size: ;
    flex-direction: column;
    align-items: center;
	margin: 0;
	min-height: 90vh;
	padding-bottom: ;
	

	
	/* BLACK BACKGROUND TOGGLE */

	/*background:black;*/
	
	

/*google font*/
	font-family: "IM Fell Great Primer", serif;
	font-weight: 400;
	font-style: normal;

/*remove scroll bar*/
	overflow-x: hidden;
}

/*links*/
a {
	color: #a600a6;
}




/*SIDEBAR*/ 
div.sidebar {
	display: flex;
	margin: 0% 5% 0% 5%;
	padding: 1% 0%;
	flex-direction: row;
	justify-content: space-around;
	border-color: white;
	border-width: 2px;
	
}

/* Sidebar links */
.sidebar a {	
	color: #a600a6;
	padding: 1%;
	text-decoration: none;
	/*font-style: italic;*/
		font-family: "Doto", sans-serif;
	font-size: 1.2em;
	font-weight: 600;
	font-style: normal;
	font-variation-settings:"ROND" 100;
	z-index: 4;
	
}

.sidebar a:hover {
	color: white;
	cursor: pointer;
}

#recroom {
	text-decoration: underline;
}


/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
.content {

	margin: -0% 20% 0% 20% ;
	justify-content: space-between;
	width: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	
}

.sides {
	display: flex;
	flex: 0 0 auto;
	justify-content: center;
	flex-grow:1;
	font-family: "Doto", sans-serif;
	font-size: 300%;
	font-weight: 300;
	font-style: normal;
	font-variation-settings:"ROND" 100;
	z-index: 3;

}

/* DVD COLLECTION */

.dvdcollection {
	margin-left: 150px;
	display: flex;
	justify-content: center;

	
}

#dvdplayer {
	max-width: 450px;
	margin: auto;
	margin-top: -20px;
	}

span.dvd {
	margin-left: -150px;
	z-index: 3;
	position: relative;
	bottom: 0;
	transition: bottom ease 0.5s;
	filter: brightness(60%);
	cursor: url('https://cdn.cursors-4u.net/previews/disc-7c72d227-32.webp') 32 32, pointer;	
}

#dvdcollection {
	display:flex;
	flex-direction: column;
	flex-grow:2;
	z-index: 3;
	
}

span.dvd:hover {
	z-index: 100 ;
	bottom: -30px;
	filter: brightness(100%);
}







.sectioncontainer {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2; /* Ensure it stays above the rain effect */
	margin: -5% 0% 0% 0%;

}

.sectiontitle {
	color: purple;
	position: relative;
	text-shadow: 0 0 10px #54347d, 0 0 20px #54347d, 0 0 30px #54347d;
	z-index: 2; /* Ensure it stays above the rain effect */
  
	font-family: "Doto", sans-serif;
	font-size: 8em;
	font-weight: 300;
	font-style: normal;
	font-variation-settings:"ROND" 100;

}

.sectiontitle::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: glitch 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
  color: white;
  text-shadow: 0 0 5px #54347d, 0 0 5px #54347d;

}

.rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(247, 247, 249, 0.1) 0,
    rgba(54, 40, 99, 0.2) 5px,
    transparent 2px
  );
  animation: rain 10s linear infinite;
  z-index: 1; /* Place it behind the text */
}


/* Glitch effect for the text */
@keyframes glitch {
  0%, 100% {
    clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%);
    transform: translate(0);
  }
  33% {
    clip-path: polygon(0 0, 100% 0, 100% 15%, 0 15%);
    transform: translate(-5px, -5px);
  }
  66% {
    clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%);
    transform: translate(5px, 5px);
  }
}

footer {
	position: fixed;      /* fixes it to the viewport */
    bottom: 0;            /* bottom of the screen */
    padding: 10px 10px;
    color: #940a92;
	text-align: center;
	width: 100%;
	margin: 0%;
	font-style: italic;
	font-size: 0.9em; 
	background-color: rgba(20, 16, 44, 0.8);
	z-index: 10;

}