/* Friends of Girl Develop It Columbus styles */

:root {
  --footer-height: 45px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background: url(images/bg-pattern.png) repeat center;
}

header {
    background: black;
}

h1, h2 {
  font-family: 'Patrick Hand SC', cursive;
}


main {
  max-width: 800px;
  margin: 0 auto var(--footer-height);
  text-align: center;
}

.content {
  background-color: white;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  padding: 5px;
}
footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    background: #000;
    padding: 10px 0;
    height: var(--footer-height);
    box-sizing: border-box;
}

footer a {
    color: #fff;
    font-size: 1.2em;
}
