/** Variables **/
:root {
  /** Colors **/
  --selection-color: rgba(0, 102, 204, .6);
  --gray: #626262;
  --dk-gray: #424245;
  --accent: #0066cc;
  /** Fonts **/
  --main-font-family: "Source Sans Pro", sans-serif;
  /** Sizes **/
  --wrap-width: 60rem;
}

/* Default Styles */
html {
  height: 100%;
}

body {
  height: 100%;
  font-family: var(--main-font-family);
  color: var(--dk-gray);
}

#wrapper {
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

::-moz-selection {
  background: var(--selection-color);
}

::selection {
  background: var(--selection-color);
}

.wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .wrap {
    width: var(--wrap-width);
  }
}

/* Convert px to rem */
/* Font Weight */
.bold,
strong {
  font-weight: bold;
}

.regular {
  font-weight: normal;
}

.italic,
em {
  font-style: italic;
}

/* Responsive Element -- Good for making perfect squares or circles */
.responsive-element {
  position: relative;
}
.responsive-element:after {
  content: "";
  display: block;
  padding-top: 100%;
}

/* Responsive Iframe, Object, Embed */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 1.875rem;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Typography */
a {
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}

.color-gray {
  color: var(--gray);
}

.color-accent {
  color: var(--accent);
}

.bg-accent {
  background: var(--accent);
}

.hover-project:hover {
  color: var(--accent);
  cursor: pointer;
}

.current-duties {
  padding-left: 1rem;
  padding-top: 0.5rem;
  color: rgb(107, 114, 128);
  font-size: 14px;
  line-height: 18px;
  max-width: 70%;
}
.current-duties ul {
  list-style: disc;
}
.current-duties ul li {
  margin-bottom: 0.3rem;
}

details[open] summary {
  color: var(--accent);
}
details[open] summary:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  transform: translateY(-50%);
}
details summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
}
details summary:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
details summary:hover {
  color: var(--accent);
}/*# sourceMappingURL=style.css.map */