html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  background-image: url(../images/bg.jpg);
  background-size: 100% 100%;
  text-shadow: 0 0 10px #00ffff;
}

html a, body a {
  text-decoration: none;
}

#header {
  padding: 10px;
  border: 2px solid yellow;
  margin: 20px auto;
  width: 80%;
  height: 20%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#header h1 {
  text-align: center;
}

#content {
  padding: 10px;
  width: 80%;
  margin: 20px auto;
  border: 2px salmon solid;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#content h1 {
  text-align: center;
}

#footer {
  padding: 10px;
  width: 80%;
  margin: 20px auto;
  border: 2px solid red;
  height: 20%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#footer h2 {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */