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

  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

body {
  background-color: #f4d04eff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  border: 1px solid black;
  border-radius: 20px;
  width: fit-content;
  margin: auto;
  background-color: white;
  -webkit-box-shadow: 7px 7px 0px 0px #000000;
  box-shadow: 7px 7px 0px 0px #000000;
}

.art {
  border-radius: 10px;
}

h2 {
  font-size: 15px;
  font-weight: 700;
}

.learn {
  background-color: #f4d04eff;
  padding: 5px 10px;
  border: 1px solid #f4d04eff;
  border-radius: 5px;
}

.publish {
  font-size: 15px;
  font-weight: 550;
}

.title a {
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.title a:hover {
  color: #f4d04eff;
}
.ins {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ins .photo {
  width: 32px;
  height: auto;
}

.learn,
.publish,
.title a,
.ins .name {
  color: #121212ff;
}

.details {
  color: #6b6b6bff;
}

.attribution {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 11px;
  padding: 10px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
