body, html {
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
}
body {
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(35,43,51,1) 100%);

    color: #fff;
    font-family: 'Montserrat', sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#logo-wrap {
    text-align: center;
}
h1.logo {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 4rem;
    line-height: .72;
    margin: 0 0 15px 0;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
h1.logo span.cc {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2F91DC;
    border-radius: 5px 5px 5px 0;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 24px;
}

.site-info {
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: .15rem;
}

a.contact {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: .8rem;
    padding: 6px 10px;
    border-radius: 8px;
    margin-top: 15px;
    border: 3px solid #eee;
    border-top: none;
    border-left: none;
}
a.contact:hover {
    background-color: #eee;
    border-color: #ccc;
}

@media ( max-width: 900px ) {
    h1.logo {
        font-size: 2.5rem;
    }
    h1.logo span.cc {
        font-size: .8rem;
        width: 30px;
        height: 18px;
    }
    .site-info {
        font-size: .9rem;
        text-align: center;
        padding: 0 40px;
    }
}