*, *:before, *:after
{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
}

#container {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: flex-start; /* align items in Main Axis */
    align-items: stretch; /* align items in Cross Axis */
    align-content: stretch; /* Extra space in Cross Axis */
}

#placeholder {
    flex: 1;
    display: flex;
    flex-direction: row;

    justify-content: flex-start; /* align items in Main Axis */
    align-items: stretch; /* align items in Cross Axis */
    align-content: stretch; /* Extra space in Cross Axis */

    background: url('logo.png') no-repeat center;
    background-size: 50%;
}

#contact {
    text-align: center;
    padding-bottom: 10px;
}

#contact p {
    margin: 0;
    padding: 2px 0;
}

#contact #callout {
    font-size: 1.2rem;
}

#contact .contactInfo a {
    color: black;
}