body {
  margin: 0;
  padding: 0;

  background-color: #F8F8F8;

  font-family: 'Noto Sans', sans-serif;
  color: #424242;
}

/* ANCHORS */
a {
  color: #CCC;
  cursor: pointer;
  text-decoration: none;

  transition: color .3s ease;
}

  a:focus,
  a:hover {
    outline: none;

    color: #537C54;
    text-decoration: none;
  }

/* WINDOW */
.window {
  position: relative;
  width: 600px;
  margin: 150px calc(50% - 300px) 30px;
  padding-bottom: 25px;
  z-index: 1000;

  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 0px 1px 2px #CCC;

  text-align: center;
}

  .window h1 {
    padding: 30px 10px 10px;

    font-size: 3em;
    text-align: center;
  }

  .window p {
    padding: 0 100px;

    font-size: 1.1em;
    text-align: center;
  }

  .window ul {
    margin: 45px 0 5px 0;
    padding: 0;

    list-style-type: none;
  }

    .window ul li {
      display: inline-block;
      margin: 0 20px;
    }

      .window ul li a {
        color: #333;
      }

      .window ul li a:hover {
        color: #537C54;
      }

/* FOOTER */
footer {
  margin: 25px 0;
  padding-top: 5px;

  border-top: 1px solid rgba(255, 255, 255, .1);

  text-align: center;
}

  footer a {
    color: #424242;

    transition: color .3s ease;
  }

    footer a:hover {
      color: #537C54;
      text-decoration: none;
    }

/* CUSTOM RESOLUTIONS */
@media(max-height: 750px) {

  /* WINDOW */
  .window {
    margin: 80px auto 30px;
  }

}

@media(max-width: 600px) {

  /* WINDOW */
  .window {
    width: 100%;
    margin: 60px auto 30px;

    border-radius: 0;
  }

}

@media(max-width: 550px) {

  .window p {
    padding: 0 75px;
  }

}
