* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    font-weight: lighter;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

a {
    color: black;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.contact {
    margin: 4rem 0;
    text-align: center;
}

.contact a {
    margin: 0 1rem;
}

.network a {
    margin: 0 .25rem;
}

.network a svg {
    transition: .2s;
}

.network a:hover svg {
    transform: scale(1.2);
}

svg {
    stroke-width: 1px;
}

svg.feather-facebook {
    fill: black;
}

span {
    display: none;
}

@media (min-width: 576px) {
    span {
        display: inline;
    }
}