@import url(https://fonts.googleapis.com/css?family=Coming+Soon);
body {
  font-family: "Coming Soon", cursive; }

#wrapper {
  max-width: 1000px;
  margin: auto;
  box-sizing: border-box;
  padding: 0 5% 0 5%; }

nav {
  width: 100%;
  background-color: white;
  position: fixed;
  top: 0; }
  nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
    nav ul li {
      list-style: none;
      padding-top: 10px; }
      nav ul li a {
        color: coral;
        padding: 2px; }
      nav ul li a:hover {
        color: white;
        background-color: coral; }

#surprise {
  float: right; }

.center {
  float: left; }

#falling {
  float: right; }

#jackinthebox {
  float: right; }

h1 {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 50px; }

h2 {
  text-align: center;
  clear: both;
  padding: 70px 0 50px 0; }

h3 {
  clear: both;
  text-align: center;
  padding: 60px 0 60px 0;
  color: coral; }

p {
  width: 45%;
  padding: 4px;
  padding-top: 100px; }

p.right {
  float: right; }

p.left {
  float: left;
  clear: both; }

footer {
  height: 200px; }

@media only screen and (max-width: 480px) {
  /* Styles */
  p {
    width: 100%;
    margin-left: auto;
    margin-right: auto; }

  p.left, p.right {
    float: none; } }

/*# sourceMappingURL=style.css.map */