
/* ================ *\
   layout
\* ================ */

* {
  box-sizing: border-box;
}

html {
    /*background: #212020;*/
}

main {
  max-width: 720px;
  margin: 0 auto 10em;
  background: white;
  padding: 1em;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
}

.logo {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 3em auto 4em;
}

.poop {
  display: block;
  width: 50px;
  margin-top: 1.5em;
  margin: 1.5em auto 0;
}

.row {
  width: 100%;
  padding: 0 5%;
  position: relative;
}
.one-quarter {
  text-align: center;
  padding-bottom: 1em;
}
@media screen and (min-width: 500px) {
  .three-quarter {
    width: 66.5%;
    display: inline-block;
    vertical-align: middle;
  }
  .one-half {
    width: 49.5%;
    display: inline-block;
    vertical-align: middle;
  }
  .one-quarter {
    width: 24.5%;
    display: inline-block;
    vertical-align: middle;
  }
}

footer {
  display: block;
  position: fixed;
  bottom: 0;
  z-index: -1;
  left: 50%;
  margin-left: -160px;  
}

/* ================ *\
   typography
\* ================ */

body {
  font-size: 100%;
  font-family: "ff-tisa-web-pro", Georgia, Times, serif;
  color: #231f20;
  background: #6AB0D4;
  /*box-shadow: 0px 0px 12px rgba(0,0,0,0.4);*/
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
}

p {
  text-align: center;
  font-size: 1.25em;
  width: 90%;
  margin: 1em auto 1.25em;
}
  footer p {
    font-size: 1.125em;
    width: 320px;
    color: white;
    margin: 0 auto;
  }

/* ================ *\
   Random specific stuff
\* ================ */

#thumbtack-medallion {
  
}

#iacp-logo {
    max-width: 150px;
}

/* ================ *\
   links and buttons
\* ================ */

.button {
  display: block;
  background: #6AB0D4;
  border: 4px solid #4f94b8;
  border-radius: 6px;
/*   box-shadow: 0px 2px 0px rgba(0,0,0,0.4); */
  padding: 1em;
  font-size: 1.125em;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto 1em;
  width: 90%;
  -webkit-transition: background-color 250ms ease-out;
     -moz-transition: background-color 250ms ease-out;
       -o-transition: background-color 250ms ease-out;
          transition: background-color 250ms ease-out;
}
  .button:hover {
    background: #4f94b8;
  }
  .button:active {
    background: #4f94b8;
    color: #231f20;
  }
  a.button {
    color: white;
  }

a:link {
  
}
a:visited {
  
}
a:hover {
  
}
a:active {
  
}


footer a:link {
  color: white;
}
footer a:visited {
  color: white;
}
footer a:hover {
  color: rgba(255, 255, 255, 0.6);
}
footer a:active {
  color: #231f20;
}




/* ================ *\
   SVG for IE stuff
\* ================ */

/* Ensure an image never exceeds the width of its container */
img {
  max-width: 100%;
  height: auto;
}

/*
 * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
 * [1] IE9
 * [2] IE10+
 */
/* 1 */
/*
img[src*=".svg"] {
  width: 500px\9; 
}
*/
/* 2 */
/*
@media screen and (min-width:0\0) {
  img[src*=".svg"] {
    width: 500px; 
  }
}
*/
