/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

/* variables */
: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%);
  --transition: all 0.3s ease-in-out;
}
/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

/* styles */
body {
  background: var(--Grey-900);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  height: 100vh;
}
.social-profile {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-card {
  background: var(--Grey-800);
  width: 320px;
  border-radius: 10px;
}
.social-info,
.profile-links {
  width: 85%;
  margin: auto;
  text-align: center;
}
.profile-avi {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin: 1.2rem auto 1.3rem auto;
}

.profile-name {
  color: var(--White);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.profile-location {
  color: var(--Green);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.profile-bio {
  color: var(--White);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.link-btn {
  color: var(--White);
  font-weight: 600;
  display: block;
  text-decoration: none;
  background: var(--Grey-700);
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: var(--transition);
}
.link-btn:hover {
  background: var(--Green);
  color: var(--Grey-800);
}

.profile-links {
  margin-bottom: 2rem;
}
.attribution {
  color: white;
  font-size: 11px;
  text-align: center;
  transform: translateY(-60px);
}
.attribution a {
  color: var(--Green);
  text-decoration: none;
  transition: var(--transition);
}
.attribution a:hover {
  color: var(--Green);
  opacity: 0.5;
}

@media (max-width: 400px) {
  .social-card {
    width: 90vw;
  }
}

/* .profile-avi-container{
  border: 2px solid red;
} */

/* 
- Mobile: 375px
- Desktop: 1440px
 */
