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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*end reset*/

body, html {
    scroll-behavior: smooth;
    max-width: 100%;
    width: 100vw;
    overflow-x: hidden;
    background-color: #f4f4f4;
    font-family: Manrope, Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.container {
    color: #aab6c0;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    width: 150px;
    height: 150px;
}

h1 {
    color: #f4f4f4;
    font-weight: normal;
    padding: 0.8em 1em 0.1em 1em;
    font-size: 2em;
}

h2 {
    color: #f4f4f4;
    font-weight: lighter;
    font-size: 1em;
    padding: 1em 2em;
}

.headshot {
    width: 100%;
    height: auto;
    max-width: 350px;
}

.lockup {
    background-color: #3b8f89;
}

.contact-block {
    border-top: #f4f4f4 solid 0.1em;
    display: flex;
    justify-content: center;
}

.contact-link {
    padding: 1em;
    color: #f4f4f4;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    height: 30px;
    width: 100%;
    padding: 1em;
    margin: 0;
}

a.contact-link{
    width: 100%;
    font-size: 1.3em;
    font-weight: normal;
}

a.contact-link:first-of-type {
    border-right: #f4f4f4 solid 0.05em;
    padding: 1em 4em 1em 4em;
}

a.contact-link:last-of-type {
    border-left: #f4f4f4 solid 0.05em;
    padding: 1em 4em 1em 4em;
}

.contact-link:hover {
    background-color: #cad8d9;
}

.details-block {
    margin: 0 auto;
    max-width: 800px;
}

dl {
    display: flex;
    flex-wrap: wrap;
}

dt {
    display: flex;
    flex-basis: 22%;
    padding: 10px;
    box-sizing: border-box;
}

dd {
    flex-basis: 78%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

dd > * {
    display: flex;
    padding: 0.2em 0.4em 0.2em 0.4em;
    text-decoration: none;
    color: #aab6c0;
}

dd > span:last-of-type {
    color: #cad8d9;
}

.social-media {
    display: flex;
    justify-content: center;
    padding: 0 0 0.5em;
}

.social-media a {
    display: flex;
    justify-content: center;
}

.social-media a > img {
    border-radius: 0;
    display: flex;
    justify-content: space-evenly;
    height: 40px;
    width: 100%;
    padding: 0.5em 2em;
}

.contact-card {
    display: block;
    background-color: #1a1c3d;
    color: #aab6c0;
    padding: 2em;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-card:hover {
    background-color: #cad8d9;
    color: #1a1c3d;
}
