<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Additional Styles */

body {
	background-color: black;
	color: whitesmoke;	
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 300px;
	transition: all ease-in-out 0.5s;
	z-index: 9997;
	transition: all 0.5s;
	padding: 0 15px;
	background: black;
	color: #ffffff;
	overflow-y: auto;
}
 
#hero {
	width: 100%;
	height: 100vh;
  	background-attachment: scroll;
  	background-size: auto;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

#hero-text {
	letter-spacing: 2px;
}

h1 {
  color: #FF0000;
}

.ds-section-headline-animate {
  color: #FF0000;
	letter-spacing: 2px;
	animation: animate 3s ease-in-out;
}

/* For animation */
@keyframes animate {
	0% {
		letter-spacing: 2px;
	}

	20% {
		letter-spacing: 10px;
	}

	100% {
		letter-spacing: 2px;
	}
}

section {
	padding: 60px 0;
	overflow: hidden;
}

#mainNav {
	background-color: transparent;
	transition: background-color 0.5s linear;
}
#mainNav:hover {
	background-color: black;      
}

#mainNav {
	background-color: rgba(0, 0, 0, var(--scroll-ds));
}

#ds-navlink-index:hover {
  color: #FF0000;
}

.nav-link:hover {
  color: #FF0000;
}

.nav-link.active {
	color: #FF0000 !important;
	font-weight: bold;
  }

#ds-social-links a {
	color: var(--bs-nav-link-color);
}

#ds-social-links a:hover{
	/*color: var(--bs-nav-link-hover-color);*/
	color: #FF0000;
}

#ds-player-container {
	background-color: rgba(0, 0, 0, var(--scroll-ds));
}

img.ds-bio-picture {
	max-height: 280px;
}

.ds-parallax {
	width: 100%;
	height: 400px;
	background-attachment: scroll;
  	background-size: auto;
	background-size: cover;
	/*background-attachment: fixed;*/
	background-position: center;
}

img.ds-cover {
	max-height: 280px;
	border: 1px solid gray;
	display: block;
}

.ds-cover-container {
	position: relative;
}

.ds-cover-overlay {
	position: absolute;
  	bottom: 0;
  	background: rgb(0, 0, 0);
  	background: rgba(0, 0, 0, 0.5); /* Black see-through */
  	color: #f1f1f1;
  	width: 100%;
	height: 100%;
  	transition: .5s ease;
  	opacity:0;
  	color: white;
}

.ds-cover-container:hover .ds-cover-overlay {
	opacity: 1;
} </pre></body></html>