@import url('https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,600');


/* ******************************************************************************************************** */

#nav-container 
{
  position: fixed;
  height: 100vh;
  width: 100%;
  pointer-events: none;

}


#nav-container * 
{
  visibility: visible;
}

#nav-container:focus-within .button 
{
  pointer-events: none;
}


#nav-content
{
  margin-top: 0px;
  padding: 20px;
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ececec;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform: translateX(-100%);
  transition: transform .3s;
  will-change: transform;
  contain: paint;
}




/* **************************************************************************************************** */

.button 
{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 200px;
  width: 100px;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 25px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  margin-top: -10px;
  background-image: url(steuerrad65.png);
    background-position: right;
  background-repeat: no-repeat;
  
}


#nav-container:focus-within #nav-content 
{
  transform: none;
  font-size: 20px;
  margin-top: -200px;
}












