body
{
  background-color: #141414;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

main
{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.social-card
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #1F1F1F;
  border-radius: 12px;
  width: 384px;
  height: 611px;
  align-items: center;
  padding: 20px 40px 0px 40px;
  
}
.content
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 304px;
  height: 531px;
}

.social-card .name
{
  color: #FFF;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
  
}

.social-card .location
{
  color: #C4F82A;
  font-weight: 700;
  margin-bottom: 24px;
}

.social-card .quote
{
  color: #FFF;
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 12px;
  text-align: center;
}


.profile
{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.profile .profile-picture
{
  height: 88px;
  width: 88px;
  border-radius: 100px;
  object-fit: cover;
}

.social-links 
{
  display: flex;
  flex-direction: column;
  margin-top: 12px;

}

.social-links a
{
  margin-bottom: 16px;
  width: 304px;
  height: 45px;
  border: none;
  border-radius: 8px;
  background-color: #333;
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
}

.social-links a:hover 
{
  background-color: #C4F82A;
  color: #333;
}


@media(min-width: 375px) and (max-width: 768px)
{

  .social-card
  {
    width: 327px;
    
  }
}

@media(min-width: 768px) and (max-width: 1440px)
{

  .social-card
  {
    width: 384px;
    
  }
}