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

:root {
  --green: hsl(75, 94%, 57%);
  --gray-700: hsl(0, 0%, 20%);
  --gray-800: hsl(0, 0%, 12%);
  --gray-900: hsl(0, 0%, 8%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: font-regular;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--gray-900);
}

.card {
  width: 20rem;
  height: fit-content;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 16px;
  background-color: var(--gray-800);
  color: white;
}

.card-profile-photo {
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  margin-bottom: 20px;
}

.profile-name {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.profile-location {
  margin-bottom: 20px;
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  color: var(--green);
}

.profile-quote {
  margin-bottom: 18px;
  font-size: 0.8rem;
  text-align: center;
  color: rgb(212, 211, 211);
  width: 100%;
}

.link-btn {
  background-color: var(--gray-700);
  text-align: center;
  padding: 12px;
  width: 100%;
  text-decoration: none;
  color: white;
  cursor: pointer;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: font-semibold;
  transition: all 0.4s ease;
}

.link-btn:hover {
  background-color: var(--green);
  color: rgb(66, 66, 66);
}
