body{
  background: linear-gradient(30deg,rgb(77,77,77), rgb(58,58,58));
  color: rgb(68, 68, 68);
}

.page-logo a{
  color: rgb(183, 230, 235);
}

header {
  position: static;
}

.header-right li a{
  color: rgb(183, 230, 235);
}

.header-right li a:hover{
  background-color: rgb(183, 230, 235);
  color: rgb(59, 59, 59);
}

main ul{
  width: 1200px;
  margin: 0 auto 48px auto;
  padding: 0;
  display: grid;
  grid-template-columns: 600px 600px;
  gap: 20px 20px;
}

main li:nth-of-type(3){
  grid-column: 1/ span 2;
}

main li{
  display: flex;
  background-color: white;
  box-shadow: 1px 1px 4px rgb(0, 0, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
}


main li img{
  width: 300px;
  height: 280px;
  object-fit: cover;
}

.item-content{
  padding:24px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-content h2{
  margin: 0;
}

.actions{
  text-align: right;
}

.actions a{
  text-decoration: none;
  padding: 6px;
  color: rgb(20, 211, 228);
  border-radius: 5px;
}

.actions a:hover{
  background-color: rgb(235, 253, 255);
}