.container {
  width: 100vw;
  font-family: var(--fonts);

  display: grid;
  grid-template-columns: 6fr 1fr 3fr;
  grid-template-rows: 40px 1fr 64px;
  grid-template-areas:
    "header header header"
    "content spacer sidebar"
    "footer footer footer";
}

.sidebar {
  grid-area: sidebar;
  margin: 16px;
}

.content {
  grid-area: content;
  margin: 0 32px 32px 32px;
}

img.profile {
  border-radius: 50%;
  padding: 5px;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.projects {
  background-color: var(--base);
  min-height: 80vh;
}

.item {
  display: flow;
}

.footer {
  grid-area: footer;
  padding: 0;
  background-color: var(--base);
  color: var(--text);
}

@media (max-width: 980px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    grid-template-areas:
      "header"
      "sidebar"
      "content"
      "footer";
  }

  .sidebar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}
