@font-face {
    font-family: openSans;
    src: url(../resource/fonts/OpenSans-Regular.ttf);
  }
@font-face {
  font-family: openSans-Bold;
  src: url(../resource/fonts/opensans_bold.ttf);
}
@font-face {
  font-family: openSans-SemiBold;
  src: url(../resource/fonts/opensans_semibold.ttf);
}
@font-face {
    font-family: Merriweather-regular;
    src: url(../resource/fonts/Merriweather-Regular.ttf);
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#footer {
    font-family: TitilliumWeb-SemiBold;
    margin-top: 25px;
    min-height: 100px;
    background-color: rgb(52, 54, 49);
    background-image: linear-gradient(to top right, #227e97 50%, #1e758d 50%);
    overflow: hidden;
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255);
}
#contact h1 {
    text-align: left;
    border: none;
}
#contact {
    min-height: 200px;
}
#contact>h2{
    font-family: TitilliumWeb-SemiBold;;
    text-align: center;
}
#contact>span>i{
    font-size: 18px;
    margin-right: 5px;
    font-weight: 100;
    vertical-align: middle;
}
#contact span {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 30px;
    font-size: 110% !important;
}
.contactDetails {
    font-family: TitilliumWeb;
    color: rgba(255, 255, 255);
    font-size: 110%;
    padding: 25px;
}
.socialLinks {
    margin: 15px;
    text-decoration: none;
    font-size: 25px;
    color: rgba(255, 255, 255);
    transition: font-size 0.2s;
}
.socialLinks:hover {
    color: rgb(98, 123, 204);
}
#socialLinkContainer {
    min-height: 10px;
    margin-bottom: 40px;
}

#footer h3{
    padding: 15px;
    color: white;
    font-size: 17px;
}
#footer span {
    color:white;
    display: block;
    padding: 5px;
    font-size: 15px;
}
#footer h3 a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 100%;
    font-family: TitilliumWeb;
    letter-spacing: 0.5px;
}
#footer h3 a:hover {
    text-decoration: underline;
}
@media only screen and (max-width:750px) {
    #footer h3{
        padding: 0px;
        font-size: 15px;
        margin: 0;
    }
    #footer span {
        color:white;
        display: block;
        padding: 5px;
        font-size: 13px;
    }
    #footer h3 a {
        text-decoration: none;
        color: white;
        cursor: pointer;
        font-size: 100%;
    }
    #footer h3 span {
        margin: 0;
        padding: 0;
    }
}