:root {
  --main-bg-color: #21232A;
  --brand-color: #4F6041;
  --brand-color-alt: #FFC82C;


  --text-color: #fff;
  --highlight-color: #7AA054;
}

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

strong {
  font-weight: 900;
}

img, svg {
  max-width: 100%;
  display: inline-block;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-align: center;
  background-color: var(--main-bg-color);
  padding: 1rem;
  color: var(--text-color);
}

@media (min-width: 1024px) {
  body {
    padding: 4rem;
  }
}

.logo {
  max-width: 15rem;
}

h1 {
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 1.7rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.alt {
  font-variant: small-caps;
  font-size: 1.4rem;
  font-weight: 500;
}

.socials {
  font-size: 1.4rem;
}

.socials a {
  display: block;
}

.socials a:hover,
.socials a:focus {
  text-decoration: none;
}

.socials span {
 display: inline-block;
}

.socials em {
  color: var(--text-color);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

.socials svg {
  height: 44px;
  vertical-align: middle;
  color: var(--brand-color-alt);
}

a {
  color: var(--brand-color);
  text-decoration: none;
  transition: all .15s linear;
  font-weight: 600;
}

a:hover,
a:focus {
  color: var(--brand-color-alt);
  text-decoration: underline;
}

#contact {
  font-size: 1.2rem;
  font-weight: 300;
}

#contact li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vh:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

