@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-VariableFont_slnt\,wght.ttf') format('truetype');
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: rgb(20, 20, 20);
}

.card {
  display: flex;
  flex-direction: column;
  background: rgb(35, 35, 35);
  width: 275px;
  padding: 30px;
  align-items: center;
  border-radius: 10px;
}

img {
  height: 80px;
  width: 80px;
  border-radius: 50px;
}

h3 {
  margin-top: 22px;
  font-size: 1.35rem;
  font-weight: 500;
}

.location {
  color: rgb(195, 255, 0);
  margin-top: 8px;
  font-size: 0.8rem;
}

.jobTitle {
  margin-top: 22px;
  font-size: 0.8rem;
}

.btns {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  width: 100%;
  gap: 13px;
}

.btn {
  height: 35px;
  color: white;
  background: rgb(55, 55, 55);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.attribution {
  position: absolute;
  bottom: 0;
  font-size: 1rem;
}

@media (max-width: 375px) {
  .card {
    width: 250px;
    padding: 10px;
  }
}
