: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%);
}

body{
  background-color: var(--Grey-900);
  color: var(--White);
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
footer{
    margin-bottom: 20px;
}
.card{
    background-color: var(--Grey-800);
    border-radius: 10px;
    padding: 40px;
    max-width: 350px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap:0;
    align-items: center;
}
.card img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.card h1{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}
.card h2{
    margin-top: 0;
    font-size: 16px;
    color: var(--Green);
    font-weight: 600;
}
.card p{
    font-weight: 400;
    font-size: 16px;
}
.social{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.social a{
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--White);
    background-color: var(--Grey-700);
    padding:16px 100px;
    border-radius: 5px;
    transition: all .75s ease;
}
.social a:hover{
    background-color: var(--Green);
    color: var(--Grey-900)
}