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

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 100 900; /* let op: bereik van alle gewichten */
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--white);
}

main {
  height: 100vh;
  width: 100%;
  background-color: var(--grey-900);
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  width: 350px;
  background-color: var(--grey-800);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 1.5rem;
}

.profile-picture {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-picture img {
  border-radius: 50%;
  object-fit: cover;
  width: 50%;
  height: 50%;
}

.user-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  width: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.social-links button {
  font-weight: 600;
  background-color: var(--grey-700);
  color: var(--white);
  box-shadow: none;
  border: none;
  min-width: 100%;
  border-radius: 6px;
  padding: 10px;
}

.social-links button:hover,
.social-links button:focus {
  background-color: var(--green);
  color: var(--grey-900);
}

.location {
  color: var(--green);
}

.about-me {
  font-size: 0.8rem;
}
