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

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

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

body{
  font-family: 'Figtree', sans-serif;
  background-color: hsl(0, 0%, 8%);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: hsl(0, 0%, 12%);
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  /*max-height: 1000px;*/
  padding: 10px;
  border-radius: 10px;
}

#profile-picture {
  width: 200px;
  /*height: 200px;*/
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#profile-picture > img {
  width: 30%;
  height: 30%;
  border-radius: 50%;

}

h3 {
  color: hsl(0, 0%, 100%);
  text-align: center;
  margin-bottom: 5px;
}

h5 {
  color: hsl(75, 94%, 57%);
  text-align: center;
  margin-top: 5px;
  font-size: .7rem;
  font-weight: 100;
}

h6 {
  color: hsl(0, 0%, 100%);
  text-align: center;
  font-weight: 100;
  font-size: .8rem;
}

#social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#social-links > div > a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color:  hsl(0, 0%, 20%);
  margin-bottom: 10px;
  width: 260px;
  padding: 8px 0;
  border-radius: 3px;
  font-size: .9rem;
  color: hsl(0, 0%, 100%);
}

#social-links > div > a:hover{
  color: hsl(0, 0%, 12%);
  background-color: hsl(75, 94%, 57%);
  transition: all 0.3s ease;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
  .container {
    width: 90%; /* Make the card width adapt to the screen */
  }

  #social-links > div > a {
    font-size: 0.7rem; /* Shrink font size */
    padding: 6px 0; /* Adjust padding */
  }
}