:root {
  --theme-color: #ffc107;
}

h1, h2, p {
  margin: 0;
}

body, html {
  margin: 0;
}

body {
  color: #2b2b2b;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.hero__content {
  text-align: center;
}

.hero__title {
  margin-top: 1.25rem;
  font-size: 2.5em;
}

.hero__subtitle {
  color: var(--theme-color);
  font-size: 2em;
  font-weight: 600;
  line-height: 1;
}

.hero__email {
  display: inline-block;
  margin-top: 1.875rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.hero__email:hover {
  border-color: var(--theme-color);
}

.hero__avatar .eyebrowLeft, .eyebrowRight {
  transition: transform 0.2s ease;
}

.hero__avatar:hover .eyebrowLeft {
  transform: translateY(8px);
}

.hero__avatar:hover .eyebrowRight {
  transform: translate(86px, 12px) scale(-1, 1) rotate(5deg) translate(-86px, -20px);
}
