:root{
    --Grey-700: hsl(0, 0%, 20%);
    --Grey-800: hsl(0, 0%, 12%);
    --Grey-900: hsl(0, 0%, 8%);
    --font: 'Inter', sans-serif;
    --Green: hsl(75, 94%, 57%);
}

*{
    box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font)
}

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

}

body{
    background-color: var(--Grey-900);
}

.holder {
  display: flex;
  flex-direction: column;
  width: 85%;
  min-width: 280px;
  max-width: 375px;
  background-color: var(--Grey-800);
  border-radius: 10px;
  gap: 12px;
  margin: 0 16px; 
}


.profile{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    padding:30px 30px 16px 30px;
    gap: 12px;
}

.pfp{
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-top: 30px;
}

.title,.location{
    margin: 0;
}
.title{
    color: white;
    font-weight: 700;
    margin-top: 20px;
  
}

.location{
    color: var(--Green);
    font-weight: 600;
    font-size: 14px;
    margin-top:8px;
}

.bio{
    color: white;
    font-size: 14px;
    margin: 20px 0 2px 0;
}

.links{
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 15px;
    width: 100%;
    padding: 0 30px 30px 30px;
    margin: 0;
}

.link_items a{
    display: block;
    text-decoration: none;
    background-color: var(--Grey-700);
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.link_items a {
    transition: background-color 0.3s ease, color 0.3s ease;
}


.link_items a:hover{
    color: black;
    background-color: var(--Green);
}