html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    background: #f5f5f5;
    /* slightly darker than white */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
}

.container {
    text-align: center;
}

.firm-name {
    font-size: 84px;
    font-weight: 700;
    color: #000;
    margin-bottom: 48px;
}

.contact {
    color: #444;
    font-size: 20px;
}

.contact-title {
    margin-bottom: 8px;
}

.contact a {
    font-size: 17px;
    display: block;
    color: #444;
    text-decoration: none;
    margin-bottom: 6px;
}

.contact a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .firm-name {
        font-size: 40px;
    }

    .contact {
        font-size: 17px;
    }

    .contact a {
        font-size: 15px;

    }
}