:root {
  --tan: #a09f93;
  --red: #f27779;
  --yellow: #ffcc66;
  --green: #99cc99;
  --light-blue: #66cccc;
  --dark-blue: #6699cc;
  --purple: #cc99cc;
}

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

body {
  font-family: 'Source Code Pro', monospace;
  margin: 0em;
  background-color: #2d2d2d;
  color: #f2f0ec;
}

h1, h2, h3 {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 300;
}

p {
  font-size: 1em;
  line-height: 1.3;
  margin-top: 0em;
}

hr {
  border-top: 1px solid #ccc;
  border-bottom: none;
  margin-top: 3em;
  margin-bottom: 2em;
}

section h1 {
  font-size: 1.3em;
  line-height: 1em;
  margin-bottom: .6em;
}

/* Same font-size and line-height as p element */
section ul li, section ol li {
  font-size: 1em;
  margin-left: -10px;
  line-height: 1.3;
}

.center {
  text-align: center;
}

/* ------------------- Grid -------------------*/

.container {
  max-width: 50em;
  width:92%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  clear: both;
  margin-right: -1%;
  margin-left:  -1%;

}

.row:before,
.row:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.row:after {
    clear: both;
}

/**
 * For IE 6/7 only
 */
.row {
  *zoom: 1;
}

.grid-1,
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
  float: left;
  width:100%;
  padding: 0 1%;
  margin-left: auto;
  margin-right: auto;
}

#centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 40em) {
  .grid-1 { width: 16.6666666%; }
  .grid-2 { width: 33.3333333%; }
  .grid-3 { width: 50%; }
  .grid-4 { width: 66.6666666%; }
  .grid-5 { width: 83.3333333%; }
  .grid-6 { width: 100%; }

}

/* Experience */
.experience [class*="row"] {
  border-bottom: dotted 1px #ccc;
  padding-top: 1em;
  padding-bottom: 1em;
}

.experience h2 {
  margin-bottom: 0;
}

.experience h2, .experience p {
  text-align: center;
}

.experience [class*="row"]:last-of-type {
  border: none;
}

@media screen and (min-width: 40em) {
  .experience h2, .experience p {
    text-align: left;
  }
}


.Topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.Topbar-link {
  flex: none;
  max-width: 50%;
  font-family: 'Source Code Pro', monospace;
  color: #f2f0ec;
  margin: 10px;
  text-align: left;
}

.header-text {
  flex: none;
  max-width: 50%;
  font-family: 'IBM Plex Serif', serif;
  font-size: 30px;
  color: #f2f0ec;
}

img {
  max-width: 50%;
  margin: 20px;
}

a {
  color: #C2C6A7;
  text-decoration: none;
}

#date {
  text-align: right;
}
