:root{
	--bg-color: #fff;
	--font-color: #424242;
	--logo: url("SFGv3.jpg")
	 }
	 

[data-theme="goth"] {
	--bg-color: #000000; 
	--font-color: #e1e1ff;
	--logo: url("GothSFGv3.jpg")
	 }
	 
body {
	font-family:verdana;
	margin-left: 40px;
	width: 60%;
	background-image: var(--logo);
	background-size: 150px 150px;
	background-repeat: no-repeat;
    background-position: 100% 0%;
    background-color: var(--bg-color);
    color: var(--font-color);
}


h1 {
    color: var(--secondary-color);

    /*other styles*/
    .....
}

a {
    color: var(--primary-color);

    /*other styles*/
    .....
}


img {
	width: 200px;
	height: 200px;
}


.content {
  padding: 5px 18px;
  display: none;
  overflow: hidden;
  background-color: var(--bg-color);
  color: var(--font-color);
  outline: dotted;
  margin-top: 5px
}

audio {
  filter: sepia(20%) saturate(70%) grayscale(1) contrast(99%) invert(12%);
  width: 200px;
  height: 25px;
}


.theme-switch-wrapper {
  display: flex;
  align-items: center;

  em {
    margin-left: 10px;
    font-size: 1rem;
  }
}
.theme-switch {
  display: inline-block;
  height: 17px;
  position: relative;
  width: 30px;
}

.theme-switch input {
  display:none;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 2px;
  content: "";
  height: 13px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 13px;
}

input:checked + .slider {
  background-color: #CCCC66;
}

input:checked + .slider:before {
  transform: translateX(8px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}



.collapsible { 
	background-color: var(--font-color);
	color: var(--bg-color);
	border: none; 
	outline: dotted; 
	font-size: 20px; 
	cursor: help;
  text-align: left;
} 
  
.active, 
.collapsible:hover { 
	background-color: color: var(--bg-color);
	color: var(--font-color);
} 
  
.text { 
	display: none; 
	font-size: 20px; 
} 


.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  color:  var(--bg-color);
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}