* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: inter;
  font-weight: 900;
  background-color: hsl(0, 0%, 8%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}
.attribution {
  display: none;
}
img{
  border-radius: 50%;
  width: 90px;
  margin-bottom: 15px;
}
h3{
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 20px;
  
}
span{
  font-weight: 400;
  color: hsl(0, 0%, 100%);
}
.container {
  background-color: hsl(0, 0%, 12%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  align-items: center;
  color: hsl(0, 0%, 100%);
  padding: 25px;
  width: 350px;
}
.tags {
  font-weight: 600;
  background-color: hsl(0, 0%, 20%);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px;
  margin: 8px;
  border-radius: 8px;
  color: hsl(0, 0%, 100%);
}
