
body, html {
	  background-color: gray;
	  min-height: 100%;
	  margin: 0;
	  font-family: "Courier New", Courier, monospace;
	  color: white;
	  display: block;
	  
}

nav {
	z-index: 1;
	position: fixed;
    right: 0;
    left: 0;
	min-height: 70px;
	display: block;
	background: rgba(192, 192, 192,0.9);
}

main {
	margin-top:3em;
	margin-bottom:3em;
	padding:0 2em 0 2em
}

footer {
  position: absolute;
  bottom: 0;
  left: 16px;
  z-index:2; 
}	

hr {
  margin: auto;
  width: 40%;
}

.pagenameh1 {
	
	margin: 1em 0 0.5em 0; 
	padding: 0 0.5em 0 0.5em;
	
}

.cookie_consent_container {
	position: fixed;
    bottom: 0px;
    background: rgba(192, 192, 192,0.9);
    width: 100%;
	z-index:999;
	display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}
.cookie_consent_button{
	margin:1em;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
	color: white;
	border:none;
	padding: 0 0.5em;
}


.placeholderimg {
	position: relative; 
	top: 50%; 
	transform: translateY(-50%); 
	opacity:0.5; 
	object-fit: contain; 
	width:100%; 
	max-height:240px;  
	
}

.about_img {
	position: relative; 
	top: 50%; 
	transform: translateY(-50%); 
	object-fit: contain; 
	width:100%; 
	max-height:240px;  
	
}

.projectlist{
	padding :0.5em 0 0.5em 0	
}

.changelog{
	margin-block-start: 1em;
	margin-block-end: 1em;
	padding :0.5em 1.5em 0.5em 1.5em;
	background:rgba(128,128,128,0.7);
	border-radius:5px;	
	
}

.projectlist > li
{
	
	background:rgba(200,200,200,0.1);
	border-radius:5px;
	list-style:none;
	margin: 0.5em 0 0.5em 0;
	padding: 0 0.5em 0 0.5em;
	
	
} 

.projectlist > li:hover
{
	
	background:rgba(200,200,200,0.6);
	border-radius:5px;
	list-style:none;
	margin: 0.5em 0 0.5em 0;
	padding: 0 0.5em 0 0.5em;
	
	
} 

.bgimg {
  background-image: url('../images/background.jpg');
  min-height: 100%;
  min-width:100%;
  background-position: center;
  background-size: cover;
  position: absolute;
  font-size: 25px;
}

.topleft {
  position: relative;
  top: 0;
  left: 16px;
}

.topright {
  position: absolute;
  top: 0;
  right: 16px;
}



.bottomright {
  position: absolute;
  bottom: 0;
  right: 16px;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}



@keyframes flicker {
    
  0%, 18%, 22%, 25%, 53%, 57%, 100% {

      text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #fff,
      0 0 80px #fff,
      0 0 90px #fff,
      0 0 100px #fff,
      0 0 150px #fff;
  
  }
  
  20%, 24%, 55% {        
      text-shadow: none;
  }    
}

/* for nav menu */
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 30px;
  right:30px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  transition-duration: .35s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 50px 0 10px 0;
  list-style: none;
  background-color: rgba(150,150,150, .9);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .4s;
  border-radius: 2px;
  z-index:1;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition-duration: 0.8s;
}
.menu__item:hover {
  background-color: rgba(255,255,255,0.3);
}