:root {
  --bg-main: #272727;
  --fg-main: #ffffff;
  --visited-link: #808080;
}

body {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  background-color: var(--bg-main);
  color: var(--fg-main);
  grid-row-gap: 10px;
  grid-column-gap: 20px;
  display: grid;
  grid-template-columns: 130px auto;
  grid-template-rows: 130px auto;
  margin-left: auto;
  margin-right: auto;
}

a:hover,
a:visited,
a:active,
a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: var(--visited-link);
}

h1:first-of-type {
  margin-top: 0px;
}

#imgMain {
  width: 128px;
}

.linkSymbol::before {
  font-size: 12px;
  content: '\1f517';
}

#header {
  display: grid;
  align-items: center;
  font-size: 64px;
  width: fit-content;
}

.content {
}

.link:hover {
  transform: translateX(10px);
}

.link:active {
  transform: translate(10px, 2px);
}

.sidebarItem {
  margin-bottom: 40px;
  cursor: pointer;
}


/* desktop styles */
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .sidebarItem {
    margin-bottom: inherit;
  }
}
