/* Header */
header{
    font-family: 'PT Serif', sans-serif;
    text-decoration: none;
    color: black;
    background-color: #F6F6F6;
    height: 50px;
}
ul{
    list-style-type:none;
}
li{
    float: left;
}
li a{

    display: block;
    padding: 8px;
    color: black;
    text-decoration: none;
}

/* Main page */
.content{
    font-family: 'PT Serif', sans-serif;
    background-color:#F6F6F6;
    color: black;
    justify-content: center;
}
.flex-container{
    display: flex;
}
.flex-child{
    flex: 1;
}

/* Gallery photos */
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 2px;
    position: relative;
    min-height: 100vh;
  }
.column {
    flex: 50%;
    max-width: 50%;
    padding: 0 4px;
  }

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Footer */
footer{
    color: black;
    background-color: #F6F6F6;
    width: 100%;
    height: 150px;
    padding-bottom: 10px;
    padding-top: 20px;
}
footer div{
    width:33%;
    float:left;

}
.footer-contact{
    padding-left: 30px;
}
#footer-email:link{
    text-decoration: none;
}

/* Social Media Buttons */
.fa {
    padding: 20px;
    font-size: 100px;
    width: 60px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius:50%
  }
.fa:hover {
    opacity: 0.7;
}
.fa-linkedin {
    background: #007bb5;
    color: white;
    font-size: large;
  }
.fa-instagram {
    background: #125688;
    color: white;
    font-size: large;
} 
.fa-youtube {
    background: #bb0000;
    color: white;
    font-size: large;
} 
.fa-twitter {
    background: #55ACEE;
    color: white;
    font-size: large;  
}
.fa-github {
    background: black;
    color: white;
    font-size: large;
  }




/* Mobile View */
@media (max-width:500px) {
    footer{
        height: auto;
    }
    footer div{
        float: none;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

}