@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
body {
  margin: 0;
  padding: 0;
  border: 1px solid black;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes descend {
  from {
    top: 5%;
  }
  to {
    top: 50%;
  }
}
#login-page-container {
  width: 100%;
  height: 100%;
  background-image: url("eaglecloud.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 16px;
  color: white;
}
#login-page-container #login-page-inner {
  width: 360px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  animation: fadeIn 2.5s ease-in-out, descend 1.5s ease-in-out;
}
#login-page-container #login-page-inner #link-container {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 20px;
  font-family: "Roboto";
  font-size: 90%;
 border-radius: 0%;
  background-color: rgba(150, 150, 150, 0.8);
}
a:link {
  text-decoration: none;
   color: white;
}
a:visited {
  text-decoration: none;
   color: white;
}