html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #bd1c22;
    background-image: url(../images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    font-family: "futura-pt", sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
}
*{ box-sizing: border-box; }
#page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
#content-wrap {
    text-align: center;
}
#content-box {
    background: #333683;
    border: 2px solid #fff;
    padding: 30px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}
#content-wrap h1 {
    font-size: 42px;
    line-height: 1em;
}
#content-box .address,
#content-box .phone {
    font-size: 24px;
}
#content-box .phone-link,
#content-box .fax-link,
#content-box .fax-link:hover {
    color: #fff;
    text-decoration: none;
}
#content-box .phone-link:hover {
    color: #9698eb;
}
