body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

body {
	font-size:100%;
	min-width:100%;
	margin:0;
	padding:0;
	background-color:#050520;
	color:white;
	padding-bottom: 200px;  
	text-align: center;
}

.acc, acc:visited{
     color: aqua;
}

h1 {
  text-align: center;
  color:white;
}

.dark-mode-body h1 {
	  color:black;
}




.desc {
  padding: 15px;
  text-align: center;
}


.source {
	color: red;
}

.source, source:visited{
	color : #f19595;
}

.dark-mode-body {
	background-color: white;
    color: black;
}

.clair {
	right : 50%;
	font-size:21px;
    cursor: pointer;
	padding: 0px 12px;	
	margin: 0px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: #4CAF50;
	transition-duration: 0.4s;
	color: white;
	text-align:center;

}


.clair:hover {
	background-color: #050520; /* Green */
  color: white;
}

.clair span {

  display: inline-block;
  position: relative;
  transition: 0.5s;
}
  
  .clair span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.clair:hover span {
  padding-right: 25px;
}

.clair:hover span:after {
  opacity: 1;
  right: 0;
}


footer {
	position:fixed;
	bottom:0px;	
	background: #1a1a1a;
	width:100%;
	color: white;
	text-align:center;
	font-size:21px;
	}
  