/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html { 
  margin: 0; height: 100%; overflow: hidden
}

body#m1 {
  color: black;
  font-family: Verdana;
  background-image: url("manyskies.png");
  animation: 30s linear infinite cls;
  overflow: hidden;
}

body#n1 {
  color: black;
  font-family: Verdana;
  background-image: url("manyblades.png");
  margin: 0; height: 100%; overflow: hidden
}

@keyframes cls {
  0% {background-position: 0 0;}
  100% {background-position: 400px 300px;}
}

@keyframes clf {
  0% {background-position: 450px 50px;}
  100% {background-position: 150px 500px;}
}

#a1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 32px;
  background: white;
  outline: 4px solid gray;
  outline-style: outset;
}

#a2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 32px;
  background: white;
  outline: 4px solid gray;
  outline-style: outset;
  text-align: center;
}

#inp1 {
  width: 422px;
}

#i1 {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 4px;
  left: 4px;
}

#d1 {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url("manyskies.png");
    background-size: 300px 225px;
    opacity: 0.5;
    z-index: -1;
    animation: 35s linear infinite clf;
}
