:root {
  --accent: #42aaff;
  --link: #42aaff;
  --link-dark: #3382c2;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Futura,Trebuchet MS,Arial,sans-serif;
  color: #555;
  background: #fefefe;
}

a, a:link {
  color: var(--link);
}

a:visited {
  color: var(--link-dark);
}

.container {
  margin-top: 20px;
  max-width: 800px;
  margin: 20px auto;
  padding: 0 40px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__title h1 {
  font-size: 3em;
}

.title__role {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.header__avatar {
  width: 50%;
  border-radius: 50% 50%;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section {
  margin-bottom: 30px;
}

h2 {
  color: #999;
  font-size: 2em;
}

.skillset,
.toolkit {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: stretch;
}

.skillset__skill,
.toolkit__tool {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 1em;
  flex-basis: calc(30% - 20px);
}

.skill__level,
.tool__level {
  font-size: 1.2rem;
  color: #888;
}

.hobbies {
  color: #aaa;
}

@media (max-width: 400px) {
  .skillset,
  .toolkit,
  .hobbies {
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
  }

  header > figure {
    margin: 20px 0;
  }

  .skillset {
    justify-content: center;
  }

  .skillset__skill {
    flex-basis: calc(50% - 20px);
  }
}

figure {
  display: flex;
  justify-content: center;
}

.contact {
  background: #202020;
  width: 100%;
  margin: 0;
  padding: 50px 0;
}

.contact p {
  margin-top: 20px;
  line-height: 1.5em;
  font-size: 1.2em;
  color: #ccc;
}

.social {
  text-decoration: none;
  color: var(--accent);
}

.scroll {
  margin: 0 auto;
  text-align: center;
}

.scroll__arrow {
  border: solid var(--accent);
  border-width: 0 10px 10px 0;
  display: inline-block;
  padding: 10px;
  transition: all 1s;
}

.scroll__arrow--down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.projects {
  padding-bottom: 50px;
  min-height: 30vh;
  margin: 0;
  color: #eee;
}

.projects h2 {
  color: rgb(19, 37, 54);
}

.projectset {
  margin-top: 1em;
  list-style: none;
  color: rgb(19, 37, 54);
}

.projectset li {
  font-size: 1.2em;
  margin-top: 1em;
  font-weight: 900;
}

.project__description {
  font-weight: 100;
}