@font-face {
  font-family: "Inter-Bold";
  src: url("assets/fonts/static/Inter-Bold.ttf") format("woff2");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("assets/fonts/static/Inter-Regular.ttf") format("woff2");
}
@font-face {
  font-family: "Inter-SemiBold";
  src: url("assets/fonts/static/Inter-SemiBold.ttf") format("woff2");
}

main {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: hsl(0, 0%, 8%);
  display: flex;
  flex-direction: column;
}
.box {
  background-color: hsl(0, 0%, 12%);
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.profile-image {
  width: 30%;
  height: 30%;
  border-radius: 60px;
  margin-bottom: 10px;
}
h1 {
  color: hsl(0, 0%, 100%);
  font-size: 1.5em;
  font-weight: bolder;
  font-family: Inter-SemiBold;
  margin-bottom: -10px;
}
.location {
  color: hsl(75, 94%, 57%);
  font-size: 0.9em;
  margin-bottom: 30px;
  font-weight: bolder;
  font-family: Inter-SemiBold;
}
.job {
  color: hsl(0, 0%, 100%);
  font-size: 0.9em;
  margin-bottom: 10px;
  font-family: Inter-Regular;
}
.social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  font-family: Inter-Regular;
}

.social > button {
  background-color: hsl(0, 0%, 20%);
  border: none;
  color: hsl(0, 0%, 100%);
  padding: 10px;

  display: inline-block;
  font-size: 1em;
  margin: 8px 10px;
  cursor: pointer;
  border-radius: 10px;
  font-family: Inter-SemiBold;
  height: 45px;
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;

  width: 100%;
}
