* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


@font-face {
  font-family: 'Open Sans';
  font-style: bold;
  font-weight: 800;
  src: url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
}



/* Set the default font for the entire page */
body {
	font-family: 'Open Sans', sans-serif;
/* 	font-family: 'Orbitron', sans-serif;
	letter-spacing: .2rem; */
}
	  
	  

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #000000, #0a0a0a);
	z-index: -1;
}

.container {
	margin: 50px;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	z-index: 1;
}




#track_grid {
	background-color: rgba(0, 0, 0, 0.1);
}




.description {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 30px;
	text-align: justify;
}






.tracklinks a {
	display: inline-block;
	padding: 2px;
	margin: 2px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	padding-bottom: 8px;
}



.background::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100%;
	z-index: -1;
	animation: move-lines 20s linear infinite;
	background: repeating-linear-gradient(to right, white, #555555 30%, #444444 50%, #555555 70%, white 100%);
	background-size: 200% 100%;
}

.background::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	animation: move-dots 0.1s linear infinite;
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 5%, transparent 5%);
	background-size: 30px 30px;
}

@keyframes move-lines {
      0% {
          background-position: 200% 0;
        }
        
        100% {
          background-position: 0 0;
        }
}

@keyframes move-dots {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 30px 30px;
	}
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: background-color 0.5s linear;
}



.spotify {
}

.apple-music {
	
}

.amazon {
	
}

.beatport {
	
}
.deezer {
	
}

#image_grid img {
	width: 100px;
	height: 100px;
}

#masked-element {
	
	position:relative;
	overflow: hidden;
	/* width: 140px;  */
	height: 200px; 
	background-image: url('dg_spotify_banner_sRGB.jpg'); 
	background-position: center; 
	background-size: cover;
}

#masked-element::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom left, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

 #masked-element h1 {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 0.5rem; */
	text-align: left;
	
    width: 100%;
    position: absolute;
    bottom: 0;

  }


a {
  text-decoration: none; /* Remove the underline */
  color: black; /* Change the color */
  font-weight: bold; /* Make it bold */
  cursor: pointer; /* Change the cursor to a pointer when hovering over the link */
  	font-size: 1.2rem;
	color: #fff;
	padding: 10px 20px;
	margin: 10px;
}
a:hover {
	text-decoration: none; /* Remove the default underline when hovering over the link */
	border-bottom: 3px solid orange; /* Add a thicker, orange border-bottom when hovering over the link */
	padding-bottom: 5px; 
}

 
 
 
@media screen and (max-width: 768px) {
	.container {
		margin: 10px;
		padding: 10px;
		border-radius: 0px;
		text-align: center;

	}

	#image_grid img {
	width: 100px;
	height: 100px;
	}
	
	#masked-element {
			padding-left: 0;
	}	
	
	#masked-element::before {

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 120%);
	}
	
	#masked-element h1 {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 0.5rem; */
	text-align: left;
	
    width: 100%;
    position: absolute;
    bottom: 0;
	}
	.tracklinks img{
		width:150px;
		height:150px;
	}
	
	.links a {
		padding:0;
		width:100%;
		display:block;
		
	}
	a:hover {
	text-decoration: none; /* Remove the default underline when hovering over the link */
	border-bottom: none; /* Add a thicker, orange border-bottom when hovering over the link */
	padding-bottom: 0px; 
}
	
}

@media screen and (min-width: 1000px) {
	.main_wrapper {
		max-width: 2000px;
		padding:0% 10% 0% 10%;
		margin: 0 auto; 
	}
	.body {
		text-align: center;
		width:100%;
	}
	.background {
	}
	#image_grid img {
		width: 200px;
		height: 200px;
	}
	
	
	#masked-element h1 {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 0.5rem; */
	text-align: left;
	
    width: 100%;
    position: absolute;
    bottom: 0;

  }
  
}










