* { box-sizing: border-box; }

:root {
    --border-color: rgba(0, 0, 0, 0.110);
    --border-color-hover: rgba(0, 0, 0, 0.300);
    --rounded-corners: 4px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-osx-font-smoothing: grayscale;
    background: #fff6ed;
    /* background-color: #dddddd; */
    color: #1f1209;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, ul, ol, li, p {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}
ul, ol, p {
    margin-bottom: 1.3em;
}
ul {
    list-style-type: none;
}
ul, ol {
    list-style: none;
    list-style-position: inside;
}
input, button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
a {
    color: #1f1209;
    text-decoration: none;
}
a:hover { text-decoration: underline; }

/* Header */
header {
    display: grid;
    grid-template-columns: 1fr max-content max-content max-content;
    margin-bottom: 18px;
}
header #coffee-cup {
    background-image: url('../images/day-coffee.svg');
    background-size: 100% 100%;
    background-position: center;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
}
header #presence {
    margin-right: 10px;
}
#about {
    margin-bottom: 18px;
}