:root {
  --header-height: 10vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background-color: black;
  color: white;
}

img {
  display: block;
  max-width: 100%;
}

body {
  margin-top: 0px;
}

.logo-container {
  width: 50px;
  height: 50px;
}

.page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-container {
  height: calc(90vh - var(--header-height));
  width: 80vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-item {
  margin: 0.3em;
}

.section-container {
  width: 80vw;
  padding-top: var(--header-height);
}

.navbar-container {
  display: flex;
  height: var(--header-height);
  width: 81vw;
  position: sticky;
  top: 0;
  background-color: black;
  padding: 8px;
}

.navbar-item {
  padding-left: 1em;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

.about-me-container {
  width: 25vw;
}

.about-me-container p {
  color: #a7bcb9;
  text-align: center;
}

.section-headers {
  font-weight: 600;
  font-size: 2.5em;
  margin-bottom: 5px;
}

.employer-headers {
  font-weight: 500;
  font-size: 1.5em;
  margin-bottom: 0px;
  margin-top: 15px;
}

.employer-position {
  font-weight: 400;
  font-size: 1em;
  margin-top: 2px;
  margin-bottom: 2px;
  font-style: italic;
}

.employer-description {
  font-weight: 400;
  font-size: 1em;
  margin-top: 0px;
  padding-left: 10px;
  color: #a7bcb9;
}

.contact-section {
  height: 50vh;
}

.skills-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 0px;
}

.skills-section li {
  list-style: none;
  flex-grow: 2;
  flex-shrink: 0;
  flex-basis: auto;
  margin: 10px;
  border: 2px solid #a7bcb9;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.hyperlink {
  color: #9b5de0;
}

/* Mobile */
@media screen and (max-width: 767px) {
  .section-container {
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-container {
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-me-container {
    width: 100%;
  }

  .navbar-container {
    width: 100%;
  }
}
