body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 8%);
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  gap: 20px;
}

main {
  width: 300px;
  background-color: hsl(0, 0%, 12%);
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  margin: 0 auto;
}
h2,
p,
.flex-item a {
  color: white;
}
#location {
  color: hsl(75, 94%, 57%);
}
img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 25px;
}
.media-link {
  height: 40px;
  background-color: hsl(0, 0%, 20%);
  border-radius: 5px;
  margin-bottom: 15px;
  align-content: center;
  color: white;
  transition: all 0.5s ease-out;
}
.media-link a {
  text-decoration: none;
  color: white;
  font-weight: 700;
}
#skill {
  margin: 30px 0;
}

.media-link:hover {
  cursor: pointer;
  background-color: hsl(75, 94%, 57%);
}
.media-link:hover a {
  color: black;
}

@media (max-width: 378px) {
  main {
    width: 250px;
  }
}
