@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/static/Inter-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/static/Inter-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/static/Inter-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Inter";
}

.page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 8%);
  min-height: 100vh;
}

.component-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: hsl(0, 0%, 12%);
  padding: 30px;
  width: 270px;
  border-radius: 10px;
}

.headshot-wrapper {
  padding-bottom: 20px;
}

.headshot {
  width: 75px;
  border-radius: 50%;
}

.name {
  color: white;
  font-weight: 700;
  padding-bottom: 5px;
}

.location {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  font-size: 12px;
  padding-bottom: 25px;
}
.description {
  color: white;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 15px;
}

.link-list {
  list-style: none;
  width: 100%;
}

.links {
  background-color: hsl(0, 0%, 20%);
  color: white;
  padding: 10px 0px;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  margin: 10px;
}

.links a {
  background-color: inherit;
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

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