html, body {
  overflow: hidden; }

a {
  text-decoration: none; }

body {
  z-index: -1;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: black;
  color: #00c2c2;
  overflow: hidden;
  background-image: url(../images/back/back.png);
  background-size: 150px 150px;
  -webkit-animation: body-background 15s linear infinite;
  -moz-animation: body-background 15s linear infinite;
  box-shadow: rgba(0, 194, 194, 0.4) 0 0 10px inset; }

app-body {
  box-shadow: rgba(0, 194, 194, 0.4) 0 0 10px inset;
  transition: 0.52s;
  position: absolute;
  background: transparent;
  display: block;
  width: 100vw;
  height: 100vh;
  color: #00c2c2;
  overflow: hidden;
  background-image: url(../images/back/back.png);
  background-size: 300px 300px;
  -webkit-animation: app-view-background 8s linear infinite;
  -moz-animation: app-view-background 8s linear infinite; }

app-view {
  transition: 0.52s;
  position: absolute;
  background: transparent;
  top: 100vh;
  display: block;
  width: 100vw;
  height: 100vh;
  color: #00c2c2;
  overflow: hidden; }
  app-view .app-img-content {
    position: absolute; }
  app-view app-button {
    position: absolute;
    text-align: center;
    display: block;
    border: #00c2c2 solid 2px;
    padding: 5px 4px 4px 0px;
    border-left-width: 10px;
    border-right-width: 10px;
    box-shadow: transparent 0 0 0 0;
    cursor: pointer;
    transition: 0.52s;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    z-index: 10000; }
  app-view app-button:hover {
    transition: 0.52s;
    background: rgba(0, 194, 194, 0.6);
    color: black;
    box-shadow: rgba(0, 194, 194, 0.4) 0 0 100px 60px; }
  app-view app-content-view {
    margin: 30px;
    height: 100%;
    display: block;
    border: #00c2c2 solid 2px;
    padding: 50px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: rgba(0, 194, 194, 0.4) 0 0 30px; }
    app-view app-content-view h1 {
      text-align: center;
      font-family: "DIN Alternate", "Roboto", "GenWeb", sans-serif;
      letter-spacing: 3.4px;
      font-weight: bold;
      font-size: 30px;
      border-bottom: rgba(0, 194, 194, 0.4) dotted 1px; }

/*app-view {
  position: absolute;
  z-index: 21;
  top: 100vh;
  left: 0;
  transition: .52s;
}*/
app-view.active {
  transition: 0.52s;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important; }

@-webkit-keyframes app-view-background {
  0% {
    background-position: 0 300px; }

  100% {
    background-position: 300px 300px; } }

@-webkit-keyframes body-background {
  0% {
    background-position: 0 150px; }

  100% {
    background-position: 150px 150px; } }

@-moz-keyframes app-view-background {
  0% {
    background-position: 0 300px; }

  100% {
    background-position: 300px 300px; } }

@-moz-keyframes body-background {
  0% {
    background-position: 0 150px; }

  100% {
    background-position: 150px 150px; } }
