* {
	margin: 0;
	padding: 0;
	line-height: 100%;
	font-size: 1em;
	font-family: 'Rubik', Arial, Verdana;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

h1 {
	font-size: 1.75em;
	text-shadow: 2px 2px #ffffff;
}

h2 {
	font-size: 1.25em;
	text-shadow: 2px 2px #ffffff;
}


#pagecontent {
	min-width: 350px;
	margin: 0 auto;
}


/* ---- Containers ---- */

header {
	background-color: #f5f5f5;
    background: rgb(227,227,227);
    background: linear-gradient(0deg, rgba(227,227,227,1) 0%, rgba(245,245,245,1) 100%);
	position: sticky;
	top: 0;
	text-align: center;
	padding: 10px;
	padding-top: 15px;
	opacity: 98%;
	transition:  all 0.5s ease;
}

footer {
	background-color: #f5f5f5;
    background: rgb(227,227,227);
    background: linear-gradient(0deg, rgba(227,227,227,1) 0%, rgba(245,245,245,1) 100%);
	position: sticky;
	bottom: 0;
	text-align: center;
	padding: 5px;
	opacity: 98%;
	transition:  all 0.5s ease;
}

img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

.container_wrapper_category {
	background-color: #f5f5f5;
    background: rgb(227,227,227);
    background: linear-gradient(0deg, rgba(227,227,227,1) 0%, rgba(245,245,245,1) 100%);
	transition: all 0.5s ease;
	padding: 5px;
}

.container_wrapper_content {
	white-space: nowrap;
	overflow: auto;
	padding: 5px;
	scroll-snap-type: x mandatory;
}

.container_scrollbuttons {
	text-align: center;
	margin: 10px;
}

.container_header_category {
	text-align: center;
	padding-top: 15px;
	padding-bottom: 10px;
}

.container_art {
	display: inline-block;
	width: 300px;
	height: 300px;
	transition:  all 0.5s ease;
	scroll-snap-align: center;
}

.container_music {
	display: inline-block;
	width: 340px;
	height: 380px;
	transition:  all 0.5s ease;
	scroll-snap-align: center;
}

.container_video {
	display: inline-block;
	width: 340px;
	height: 360px;
	transition:  all 0.5s ease;
	scroll-snap-align: center;
	
}

.container_interactive {
	display: inline-block;
	width: 300px;
	height: 167px;
	background-color: #f5f5f5;
	padding: 2px;
	transition:  all 0.5s ease;
	scroll-snap-align: center;
}


/* ---- Scrollbar ---- */
/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  
}

/* Track */
::-webkit-scrollbar-track {
  background: #dbdbdb;
  border-radius: 30px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #f5f5f5;
    transition: all 0.5s ease;
    border-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
}




/* ---- Navigation ---- */
nav {
	padding: 10px;
	margin-top: 2px;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: auto;
}

.anchor {
    display: block;
    position: relative;
    top: -110px;
    visibility: hidden;
}

.categorylink {
    display:inline-block;
	border: 0px;
	background-color: gray;
	color: white;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
	border-radius: 30px;
	transition: all 0.25s ease;
	text-decoration: none;
}

.categoryicon {
    font-size: 24px;
    color: white;
    vertical-align: middle;
}


.scrollbutton {
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 0px;
	background-color: gray;
	color: white;
	border-radius: 30px;
	transition: all 0.25s ease;
}


/* ---- Spacers ---- */

.spacer1 {
	height: 3px;
    background-color: #ededed;
}

.spacer2 {
	height: 5px;
    background-color: #ededed;
}



/* ---- Media Queries ---- */

@media (hover: hover) {
   	.scrollbutton:hover {
		padding-left: 50px;
		padding-right: 50px;
		background-color: orange;
		cursor: pointer;
    }
    
	.categorylink:hover {
		padding-left: 40px;
		padding-right: 40px;
		background-color: orange;
		cursor: pointer;
	}
	
	
}

@media screen and (min-width: 900px) {
	* {
		font-size: 1.05em;
	}

	h1 {
		font-size: 2em;
	}
	
	h2 {
		font-size: 1.5em;
	}
	
	.container_wrapper_category {
        padding-left: 10px;
        padding-right: 10px;
    }
	

	.container_music {
		width: 700px;
	}
	
	.container_video {
		width: 700px;
	}
	
	.container_interactive {
		width: 550px;
	}
	
	.categoryicon {
        font-size: 32px;
    }
	
	.scrollbutton {
        padding-left: 60px;
        padding-right: 60px;
	}
	
    .anchor {
        display: block;
        position: relative;
        top: -160px;
        visibility: hidden;
    }

   @media (hover: hover) {
       	.scrollbutton:hover {
    		padding-left: 70px;
    		padding-right: 70px;
	    }
   }
}

@media screen and (min-width: 1100px) {
	.container_art {
		width: 450px;
		height: 450px;
	}
}


/*
@media screen and (min-height: 900px) {
	@media (hover: hover) {
    	.container_wrapper_category:hover {
    	    padding-top: 50px;
    	    padding-bottom: 50px;
    	}
	}
}
*/


