body {
    background-color:#c1c1c1;
  }
.pics {
    position: relative;
  }
.comment {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #FFFFFF;
    background-color: #000000;
    padding: 0.25rem;
    margin-right: 1rem;
  }
img {
    box-sizing: border-box;
    border:5px solid;
    border-style: ridge;
    width: fit-content;
    max-width: 100%;
    height: auto;
  }
.season {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(412px, 100%), 1fr)
  );
  gap: 0.25rem;
}