@font-face {
  font-family: Inter;
  src: url("./assets/fonts/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 400, 600, 700;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}
body {
  background-color: hsl(0, 0%, 8%);
}
.body-div {
  display: flex;
  flex-direction: column;
  margin: 50px 20px;
  background-color: hsl(0, 0%, 12%);
  padding: 20px;
  align-items: center;
  border-radius: 0.6rem;
}
img {
  border-radius: 60%;
  width: 30%;
  padding-bottom: 15px;
}
h1 {
  padding: 5px;
  color: hsl(0, 0%, 100%);
  font-weight: 400;
}
h4 {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
}
p {
  margin: 20px;
  color: hsl(0, 0%, 100%);
  font-size: 14px;
}
.anchor-tag {
  color: hsl(0, 0%, 100%);
  width: 100%;
  align-content: center;
  text-decoration: none;
  padding: 15px;
  background-color: hsl(0, 0%, 20%);
  border-radius: 0.6rem;
  display: block;
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
a:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}
.attribution {
  display: none;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
@media only screen and (min-width: 1024px) {
  .body-div {
    margin: 8% 35%;
    background-color: hsl(0, 0%, 12%);
    padding: 50px 30px;
  }
  body {
    background-color: hsl(0, 0%, 8%);
  }
  .attribution {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
  }
}
