body {
  padding:0px;
  margin: 0px;
  max-width: 700px;
  position: relative;
  overflow-x: hidden;
}

#container{
  height:500px;
  max-width: 700px;
  margin:auto;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #000;
  font-family: Consolas, 'Courier New', Courier, Monaco, monospace;
  color: #D3EDFB;

  position: relative;
}
#ascii{
  font-size: 0.4em;
  text-align: center;
  line-height: 0.8;
}
@media screen and (max-width:500px) {
  body{
    font-size: 6px;
  }
  #container{
    height: 300px;
  }
  #ascii{
    font-size:1em;
    line-height: 1;
  }
  #term-fr{
    visibility: hidden;
  }
}
#logo{
  width: 400px;
  max-width: 100%;
  margin: auto;
}
#logo img {
  animation: flicker 1.0s;
  position: absolute;
  display: block;
  width: 400px;
  max-width: 100%;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#term {
  font-size:0.8em;
  color: #D3EDFB;
  opacity: 0.8;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 10px;
  padding-left: 20px;
  white-space : pre;
}

#term:after {
  content: "_";
  opacity: 1;
  animation: cursor 1s infinite;
}
#term-fr{
  position: absolute;
  bottom: 0;
  right: 2em;
}
#term-fl{
  position: absolute;
  bottom: 0;
  left: 2em;
}
.flick{
  animation: flicker 1.0s;
}
@keyframes cursor {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes flicker {
		0% { opacity: 0.15795 }
		40% { opacity: 0.15795 }
		45% { opacity: 0.52042 }
		65% { opacity: 0.52042 }
		70% { opacity: 0.68695 }
		75% { opacity: 0.8 }
		90% { opacity: 0.8 }
		95% { opacity: 0.08351 }
		100% { opacity: 1}
	}

  .bsod {
    font-family: 'Lucida Console', 'Lucida Sans Typewriter', monaco, 'Bitstream Vera Sans Mono', monospace;
    background: #0000AA;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    color: #fff;
  }

  .error-header {
    text-align: center;
    margin-bottom: 10px;
  }

  .error-header span {
    background: rgba(255, 255, 255, 0.7);
    color: #0000AA;
    margin: auto;
  }

  #error {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 14px;
    max-width: 420px;
  }
a.power-button{
  display: block;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border: 2px solid #dedede;
  background-color: #efefef;
  box-shadow: 0px 0px 40px 1px #ddd inset,
  0px 2px 4px rgba(0,0,0,0.4),
  1px 1px 4px rgba(0,0,0,0.3),
  -1px -1px 2px rgba(0,0,0,0.1),
  -1px 1px 2px rgba(0,0,0,0.1);
  text-align: center;
  line-height: 50px;

  left: 0;
  right: 0;

  margin: auto;

  border-radius: 50%;
  transition: color 0.8s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.power-button:hover{
  box-shadow:  0px 2px 6px rgba(0,0,0,0.4),
  1px 1px 6px rgba(0,0,0,0.3),
  -1px -1px 4px rgba(0,0,0,0.1),
  -1px 1px 4px rgba(0,0,0,0.1);
}
.power-button.on{
  color: #2ecc71;
}