/* FONTS
------------------------------------------------------- */
/* FIGTREE */
@font-face {
  font-family: "Figtree";
  src: url(../fonts/Figtree[wght].woff2) format("woff2");
  font-weight: 300 800;
  font-style: normal;
}

@font-face {
  font-family: "Figtree";
  src: url(../fonts/Figtree-Italic[wght].woff2) format("woff2");
  font-weight: 300 800;
  font-style: italic;
}

@font-face {
  font-family: "icons";
  src: url("../fonts/icons.eot?21442472");
  src: url("../fonts/icons.woff2?21442472") format("woff2"), url("../fonts/icons.woff?21442472") format("woff"), url("../fonts/icons.svg?21442472#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* BASE STYLES
------------------------------------------------------- */

:root {
  --general-transition: all 0.45s ease;
  --box-shadow: 0px 5px 16px -5px rgba(33, 33, 33, 0.2);
  --primary: #00421b;
  --accent: #b0488f;
  --text: #001f0d;
  --background: #fffcf8;
}

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

* {
  margin: 0;
}

html {
  font: 16px, Helvetica, sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text);
  font-family: Figtree, serif;
  font-size: 1rem;
  font-variation-settings: "wght" 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1 {
  color: var(--primary);
  font-size: 2.75rem;
  font-family: "moret-variable", serif;
  font-variation-settings: "wght" 325;
  line-height: 1.2;
  margin: 0.7em 0 0.1em;
}

h2 {
  font-variation-settings: "wght" 400;
}

a {
  transition: var(--general-transition);
}

*:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  text-decoration: none;
}

::-moz-selection {
  background: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: none;
}

#root,
#__next {
  isolation: isolate;
}

/* CONTENT
------------------------------------------------------- */
.topbar {
  background: var(--primary);
  color: #fff;
  font-variation-settings: "wght" 300;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  padding: 8px 0;
  text-align: center;
}

.container {
  margin: 0 auto;
  max-width: 480px;
  padding: 2rem;
  text-align: center;
}

.headshot {
  max-width: 170px;
  height: auto;
  margin: 0 auto;
}

.job-title {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.social-icons {
  list-style: none;
  margin: 3rem auto;
  padding: 0;
}
.social-icons li {
  display: inline-block;
  margin: 0 5px;
}

.social-icons svg {
  fill: var(--accent);
  width: 44px;
  height: auto;
  transition: var(--general-transition);
}

.social-icons svg:hover {
  fill: var(--primary);
}

#logo {
  fill: var(--primary);
  margin: 0 auto;
  max-width: 350px;
}

/* BUTTONS
------------------------------------------------------- */
.buttons{
margin-bottom:2.5rem;  
}

.btn {
  display: block;
  color: #fff;
  background: var(--primary);
  margin: 4px 0;
  padding: 14px 4px;
  width: 100%;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent);
}

.btn-group {
  display: flex;
  justify-content: space-between;
}

.btn-group .btn {
  width: 49%;
}

/* ICON FONTS
------------------------------------------------------- */
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-size: 120%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1;
  margin: 0 0.2rem;
  text-align: center;

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
}

.icon-ic-calendar:before {
  content: "\e800";
}
.icon-ic-click:before {
  content: "\e801";
}
.icon-ic-download:before {
  content: "\e802";
}
.icon-ic-email:before {
  content: "\e803";
}
