@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 60%;
  max-width: 720px;
  min-width: 280px;
  padding: 48px;
  text-align: center;
}

.name {
  font-size: 2.75rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.1;
}

.job {
  font-size: 1.125rem;
  font-weight: 400;
  color: #555555;
  margin-top: 8px;
}

.divider {
  width: 100%;
  height: 2px;
  background: #111111;
  margin: 28px auto;
}

.links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

.link {
  text-decoration: none;
  display: flex;
  opacity: 0.5;
}

.link:hover {
  opacity: 1;
}

.link img {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .card {
    width: 90%;
    padding: 32px 24px;
  }

  .name {
    font-size: 2rem;
  }
}