<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*, html {
    padding: 0;
    margin: 0;

}
:root {
    --light-blue: #8ecae6;
    --med-blue: #219ebc;
    --dark-blue: #023047;
    --yellow: #ffb703;
    --orange: #fb8500;
    font-family: Merriweather, Arial, Helvetica, sans-serif;
}

h1, h2, .header-top, .tagline, .job-title, .position {
    font-family: Karla, Arial, Helvetica, sans-serif;
}

h2 {
    color: var(--med-blue);
    margin-bottom: 1rem;
}

p {
    margin: 1rem 0;
    line-height: 1.5rem;
}

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

.container { 
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    margin-top: 2rem;
    background-color: var(--med-blue);
    color: white;
    padding: 1rem;
    border-radius: 5px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.name {
    width: max-content;
}
.title {
    font-weight: bold;
    width: max-content;
}

.tagline {
    color: white;
    font-size: 2rem;
    font-style: italic;
    text-align: right;
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.header-bottom div {
    margin: auto;
}
.header-bottom a {
    display: flex;
    align-items: center;
    padding: 0 4px;
    transition: outline-color .3s;
    outline: 1px solid transparent;
}

.header-bottom a:hover, .header-bottom a:focus, .header-bottom a:focus-visible {
    border-radius: 5px;
    outline-color: white;
}

.header-bottom svg {
    height: 32px;
    margin-right: 4px;
}


section {
    padding: 1rem;
}


ul {
    padding-left: 1rem;
    margin-top: 1rem;
}

li {
    line-height: 1.5rem;
}

.technical-details .topic {
    font-weight: bold;
}

.job-title {
    display: flex;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: grey;
}

.employer-location {
    flex-grow: 1;
}

.position {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 700;
}

.job-details, .other-details {
    margin-bottom: 1rem;
}

.no-margin-bottom {
    margin-bottom: inherit;
}

@media screen and (max-width: 690px) {
   .header-top {
    flex-direction: column;
   }
   .name, .title {
    width: auto;
    text-align: center;
   }
   .tagline {
    font-size: 1.4rem;
    margin-top: .5rem;
    text-align: center;
   }
   .job-title {
    flex-wrap: wrap;
   }
}



@media print {
   *, html {
    font-size: 14px;
   } 
   h1 {
    font-size: 3rem;
   }
   header {
    margin-top: 0;
   }
   .header-top {
    flex-direction: column;
   }
   .name, .title {
    width: auto;
    text-align: center;
   }
   .name, .tagline, svg {
    color: var(--med-blue)
   }
   .title, .email, .phone, .linkedin, .address   {
    color: gray;
   }
   .tagline {
    font-size: 1.4rem;
    margin-top: .5rem;
    text-align: center;
   }
   .header-bottom{
    text-align: center;
   }
   p {
    line-height: unset;
   }

}
</pre></body></html>