* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f0eee9;
    color: rgb(4, 4, 46);
    font-family: 'IBM Plex Sans', sans-serif;
}

::selection {
    background: gold;
    color:black;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: #10161D;
    color: white;
    overflow: hidden;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#flowfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index:0;
    background: #10161D
}

.hero-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mark {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    letter-spacing: 3px;
    color: white;
}

.hero-body {
    position: relative;
    z-index: 1;
    max-width: 700px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-head {
    margin-bottom: 50px;
    border-bottom: 1px solid rgb(237, 234, 206);
    padding-bottom: 15px;
}

.section-head h2 {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 40px;
    color: rgb(4, 0, 15);
}

.exp-entry {
    padding: 30px 0;
    border-bottom: 1px solid rgb(244, 241, 215);
}

.exp-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #656054;
    margin-bottom: 5px;
    line-height: 1.7;
}

.exp-meta .dates{
    color: #3E8E82;
    font-weight: 500;
}

.exp-main.role {
    font-family: 'Newsreader', serif;
    font-size: 22px;
    font-weight: 600;
    color: #0F1419;
    margin-bottom: 2%;
}

.exp-main .org {
    font-size: 14px;
    color: #6B6558;
    margin-bottom: 16px;
}

.exp-main ul {
    list-style: none;
    padding-left: 20px;
}

.exp-main li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    color: #2A2E33;
}

.exp-main li::before{
    content: "—";
    position: absolute;
    left: -20px;
    color: goldenrod;
}

.dark {
    background: #10161D;
    color: white;
    max-width: 100%;
    padding: 80px 40px;
}

.dark h2 {
    max-width: 1000px;
    margin: 0 auto 50px;
    border-bottom: 1px solid #2A3540;
    padding-bottom: 15px;
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 40px;
    color: white;
}

.award-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto;
    background: #2A3540;
    border: 1px solid #2A3540;
}

.award {
  background: #10161D;
  padding: 35px;
}

.award .rank {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #D6A536;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.award p {
    font-family: 'Newsreader', serif;
    font-size: 16px;
    color: white;
}

footer {
    background: #f0eee9;
    padding: 40px 40px 30px;
    text-align: left;
}
footer p{
    font-size: 24px;
}

footer a {
  color: #0F1419;
  text-decoration: none;
  font-size: 16px;
  margin-right: 20px;
  border-bottom: 1px solid #D9D5C9;
  line-height: 2;
}

footer a:hover {
  color: #D6A536;
  border-color: #D6A536;
}

footer .small {
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  color: #6B6558;
  letter-spacing: 2px;
}