/*
Name: Gabriela Wyffels
Date: 04.14.18
Section: CSE 154 AG

This is the 404Alien.css file for the 404Alien.html page, a 404 error
page that has an alien spaceship flying off the page and snow animation
done with JavaScript.
*/


body {
  background-image: url("background-image.jpg");
  /* Background photoshop layer of jpg is from "White Snow Tree", Mashtrelo.
  https://mashtrelo.com/wp-content/uploads/2017/12/winter-iphone-wallpaper-1.jpg */
  background-repeat: no-repeat;
  background-size: 100%;
}

#container {
  width: 100%;
  height: 100%;
  position: relative;
}

h1 {
  font-size: 45pt;
  margin-bottom: 0;
  margin-top: 21%;
}

p {
  font-size: 12pt;
  text-align: center;
  margin: 0;
}

a {
  padding-left: 4px;
  padding-right: 4px;
}

h1, p, a {
  color: #4d3b61;
  font-family: 'Open Sans', sans-serif;
}

h1, p {
  display: flex;
  justify-content: center;
}

#spaceship {
  margin-left: 250px;
  width: 150px;
}

#snow {
  width: 100%;
}

#spaceship, #snow {
  position: absolute;
}

.hidden {
  display: none;
}
