: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%);
}
*{
    margin: 0;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

body {
  height: 100vh;
  background-color: var(--grey-900);
}

main {
  height: 100vh;
  display: grid;
  place-items: center;
  font-family: 'Inter';
}

.container {
  background-color: var(--grey-800);
  color: var(--white);
  box-sizing: border-box;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
}

.container > img{
    border-radius: 50%;
    width: 76px;
    margin-bottom: 16px;
}

.container > h1{
    margin-bottom: 16px;
}
.container > h3{
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--green);
}
.container > h4{
    font-size: 14px;
    margin-bottom: 24px;
}
.link-container{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.link-container > a{
    text-decoration: none;
    border-radius: 16px;
    background-color: var(--grey-900);
    color: var(--white);
    text-align: center;
    padding: 12px;
}

.link-container > a:hover{
    color: var(--grey-900);
    background-color: var(--green);
}