* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #F4D04E;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  overflow: hidden;
}

.main {
  width: 327px;
  height: 501px;
  padding: 24px;
  background-color: #fff;
  margin: 250px auto;
  border-radius: 20px;
  border: 1px solid black;
  box-shadow: 10px 10px 0 rgba(0, 0, 0);
}

.main__img {
  display: block;
  width: 279px;
  height: auto;
  border-radius: 10px;
}

.category {
  background-color: #F4D04E;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.4px;
  width: 73px;
}

.title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.title:hover,
.title:focus {
  cursor: pointer;
  color: #F4D04E;
  transition: color 0.2s;
}

.description {
  color: #6B6B6B;
  font-size: 14px;
}

.text__block {
  margin: 24px 0;
}

.main__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author__img {
  width: 32px;
  height: 32px;
}

.author__name {
  font-weight: 700;
  font-size: 16px;
}

.attribution {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  padding: 10px; 
}