html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html, body {
    font-size: 16px;;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

input, textarea {
    line-height: 1.2;
    font-family: 16px;
}

input,
textarea,
select {
    font-size: 16px;
}

img {
    max-width: 100%;
}

button {
    margin: 0;
}

/* Basic Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

h2 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

p {
    margin: 1.5rem 0;
}

a {
    color: #3030F0;
}

li {
    list-style: disc;
    margin: 0.5rem 0 0.5rem 20px;
}


/* Section */
.section {
    padding: 30px;
    border-bottom: 2px solid #F1F1F1;
}

.section--header {
    background: #F1F1F1;
}

.section-content {
    max-width: 850px;
}

@media (min-width: 600px) {
    .section {
        padding: 50px;
    }
}

/* Hero Text */
.hero-text {
    font-size: 1.3rem;
}

/* TODO remove me */
.social {
    outline: 1px solid red;
}

/* Avatar */
.avatar {
    display: block;
    width: 80px;
    height: 80px;
    background: url('./images/william.jpg');
    background-position: center -10px;
    background-size: cover;
    border-radius: 50%;
    margin: 0 20px 0px 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
    float: left;
}

/* Company List Item */

.company-list-item {
    list-style: none;
    /* Poor-man's clearfix: */
    overflow: hidden;
    margin:0 0 30px 0;
}

.company-list-item__logo {
    width: 100px;
    height: auto;
    margin: 0 0 10px 0;
}

.company-list-item__text {
    width: calc(100% - 100px);
}

@media (min-width: 600px) {
    .company-list-item__logo {
        margin: 7px 30px 0 0;
        float: left;
    }

    .company-list-item__text {
        float: left;
        width: calc(100% - 100px - 30px);
    }
}
