body {
  background: linear-gradient(30deg, rgb(77, 77, 77), rgb(55, 55, 55));
  color: rgb(68, 68, 68);
}
#page-logo a {
  color: rgb(105, 196, 224);
}

header {
  position: static;

}
header a {
  color: rgb(105, 196, 224);
}
header nav a:hover {
background-color:rgb(105, 196, 224);
color: rgb(69, 69, 69);
}
main li img {
  height: 280px;
  width: 300px;
  overflow: hidden;
  object-fit: cover;
}
main li {
  display: flex;
  border-radius: 6px;
  background-color: aliceblue;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
li:nth-of-type(3) {
  grid-column: 1 / 3;
}
main ul {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
}

.item-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.actions {
  text-align: right;
}
.actions a {
  text-decoration: none;
  padding: 6px;
  /*  flex-wrap: wrap;*/
  color: rgb(76, 176, 253);
  font-size: 18px;
  font-weight: 700;
  /* flex-direction: column-reverse;*/
}
.actions a:hover {
  background-color: rgb(235, 253, 255);
  border-radius: 6px;
}
