:root {
  --highlight-color: #1da067;
  --font-color: rgb(228, 228, 228);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: var(--font-color);
}

body {
  background-color: black;
}

section, footer {
  margin: auto;
  width: 600px;
}

@media only screen and (max-width: 600px) {
  section, footer {
    width: calc(100% - 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}


section a {
  color: var(--highlight-color);
}

a {
  text-decoration: none;
  color: var(--font-color);
}

h2 {
  font-size: 18px;
}

.highlight {
  color: var(--highlight-color)
}

#me {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

#me p {
  margin: auto;
  margin-top: 10px;
}

#me img {
  display: block;
  margin: auto;
  border-radius: 5px;
  width: 160px;
  filter: grayscale(40%);
}

#contact ul {
  display: flex;
  padding-inline-start: 0;
}

#contact li {
  list-style: none;
  margin-right: 10px;
}