/* CSS RESET */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
    text-align: center;
}

@media screen and (max-width: 500px) {
  .column {
    width: 100%;
  }
}

img {
  margin: : 0;
}

li {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 20px;
}

h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 300%;
}

h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 150%;
}

p {
    font-family: 'Open Sans Condensed', sans-serif;
    margin: 10px;
}

/*Flexbox for side by side images on homepage*/
.row {
  display: flex;
  justify-content : center;
}

.column {
  
  padding: 5px;
}

.section-height {
    /*height: 300px;*/
    margin: 5px 0;
}

.section-1 {
    background-color: #FFFFFF;
    background-size: 100%;
    /*height: 100vh;*/
    /* max-width: 600px; */
    /* margin: 0 auto;   */
    font-family: 'Open Sans Condensed', sans-serif;
}

.social-icons {
  padding: 10px;
  text-align: center;
  }  
  
.social-icons li {
  display:inline-block;
  list-style-type:none;
  }

.social-icons li a {
  border-bottom: none;
  }
  
.social-icons li img {
  margin-right: 20px;
  padding: 10;
}

footer {
    margin-top: 20px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    font-family: 'Open Sans Condensed', sans-serif;
}