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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: #607d8b;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro__name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

@media screen and (min-width: 600px) {
  .intro__name {
    font-size: 3rem;
  }
}

.intro__summary {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: 300;
}

.social-icons {
  margin-top: 20px;
}

.social-icons__icon {
  display: inline-flex;
  margin: 0 0.5rem;
  text-decoration: none;
}

.svg-inline__fa {
  width: 1.5rem;
}

.svg-inline__fa--bigger {
  width: 1.7rem;
}

.company-link {
  color: #490f9e;
  text-decoration: none;
}

.company-link > span {
  color: inherit;
  position: relative;
}

.company-link > span::after {
  content: "";
  position: absolute;
  background-color: #490f9e;
  bottom: -2px;
  height: 2px;
  left: 0;
  width: 100%;
  display: block;
}
