/* -- DEFAULT STYLE ==================================================
=====================================================================--*/

  body{
    background-image: url("http://subtlepatterns.com/patterns/congruent_pentagon.png");
  }
  .wrapper{
    width: 300px;
    height: auto;
    margin: 0 auto;
    padding: 30px;
    background: white;
    opacity: 0.75;
  }

  h1{
    font-size: 2.2em;
    color: #2F999E;
    margin-bottom: 0.5em;
  }
  p{
    font-size: 1em;
    line-height: 1.2em;
    color: white;
    margin-bottom: 2em;
    padding: 10px;
    background-color: black;
  }

  a, a:visited {
    color: #2F999E;
    text-decoration: none;
  }
  a:hover{
    color: magenta;
    text-decoration: none;
  }

  /* -- Presistent footer style --*/
  footer, footer p{
    width: 100%;
    height: 30px;
    background-color: orange;
    color: white;
    clear:both;
    text-align: center;

  }

/* -- Tablet style ==================================================
=====================================================================--*/
@media only screen and (min-width: 480px){ 
  body{
    background-image: url("http://subtlepatterns.com/patterns/food.png");
  }
  .wrapper{
    width: 420px;
    height: auto;
    margin: 0 auto;
    padding: 30px;
    background: white;
    opacity: 0.75;
  }

  h1{
    font-size: 2.7em;
    color: orange;
    margin-bottom: 0.5em;
  }
  p{
    font-size: 1.5em;
    line-height: 1.2em;
    color: white;
    margin-bottom: 2em;
    padding: 10px;
    background-color: green;
  }

  a, a:visited {
    color: orange;
    text-decoration: none;
  }
  a:hover{
    color: magenta;
    text-decoration: none;
  }
}
/* -- Desktop style ==================================================
=====================================================================--*/
@media only screen and (min-width: 959px){ 
  body{
    background-image: url("http://subtlepatterns.com/patterns/tree_bark.png");
  }
  .wrapper{
    width: 900px;
    height: auto;
    margin: 0 auto;
    padding: 30px;
    background: white;
    opacity: 0.75;
  }

  h1{
    font-size: 3.5em;
    color: magenta;
    margin-bottom: 0.5em;
  }
  p{
    font-size: 2em;
    line-height: 1.2em;
    color: white;
    margin-bottom: 2em;
    padding: 10px;
    background-color: black;
    width: 30%;
    float: left;
    margin-right: 1%;
  }

  a, a:visited {
    color: magenta;
    text-decoration: none;
  }
  a:hover{
    color: yellow;
    text-decoration: none;
  }
}


