/* Color Palette from Adobe Color Wheel
--teal:          #76D6DB  - header & footer backgrounds
--sky:           #A1D6F5  - body & section backgrounds
--ice-blue:      #C4E1F2  - borders
--lavender-blue: #C4D3F2  - section dividers
--mint:          #D8F2EB  - special backgrounds
--periwinkle:    #8484F5  - link hover
*/

:root {
    --teal:          #8dd7ee;
    --sky:           #e4f2fa;
    --ice-blue:      #C4E1F2;
    --lavender-blue: #C4D3F2;
    --mint:          #D8F2EB;
    --periwinkle:    #8484F5;
}

/* Global styles */
html {
    box-sizing: border-box;
}

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

body {
    background: var(--sky);
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.content-wrap {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px;
    overflow: hidden;
}

h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 0;
}

h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
}

.profile-img {
    border-radius: 50%;
}

.column-narrow {
    width: 30%;
    float: left;
    padding-right: 3%;
    min-height: 175px;
}

.column-wide {
    width: 70%;
    float: left;
    min-height: 225px;
}

header h1, header h2 {
    margin: 0;
}


/* Header & Footer */
header {
    background: var(--teal);
    color: #1a1a1a;
}

footer {
    background: var(--teal);
    color: #1a1a1a;
    text-align: center;
}

footer a {
    color: #1a1a1a;
}

.contact-info a {
    padding: 10px;
    display: inline-block;
}


/* Work Experience */
.work-experience {
    background: var(--sky);
    color: #1a1a1a;
}


/* Education */
.education {
    background: var(--sky);
    color: #1a1a1a;
}