@charset "utf-8";

header{
	 text-align: center;
}

h1,h3{
   line-height: 1.2;
}

h2{
  margin-top: 3px;
  margin-bottom: 0px;
  line-height: 0;
  color: rgba(255, 255, 255, .0);
}

footer{
	text-align: center;
	margin-top: auto;
}

li{
	font-size: large;
	margin-bottom: 15px;
	color: darkgrey
}

body{
	  max-width: 850px;
    margin: 40px auto;
    padding: 0 10px;
    font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	  background-color: #121212;
  	color: #D0D0D0
}

a:link{
	color:cadetblue
}

a:visited{
	color:mediumorchid
}

a:hover{
	color:#00DCE2
}

aside{
	color:darkgrey
}

p.disclaimer{
	font-size: 11px;
}

p.topscroll{
	text-align: center;
}

@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/** Collapsible **/


input[type="checkbox"] {
  display: none;
}

.wrap-collapsible{
  max-width: 100vw;
  max-height: 100%;
}

.lbl-toggle {
  display: block;
  padding: .5rem;
  
  font-weight: bold;
  font-size: 1.8rem;

  
  color: #c0deff;
  background: #29537f;
  
  cursor: pointer;
  
  transition: all 0.5s ease-out;
}

.lbl-toggle:hover {
  color: #4080c5;
  background: #7cbbff
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;
  
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid currentColor;
  
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);
  
  transition: transform .1s ease-out;
}

.collapsible-content {
  margin: 0 auto;
  display: inline-block;
  padding: .2rem 1rem;
  
  max-height: 0px;
  overflow: hidden;
  
  transition: max-height ease-in .1s;
  }
.collapsible-content .inner {
  display: inline-block;
  margin: 10px; 
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 50000px;
  
}
.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}