body {
    background: linear-gradient(30deg, rgb(33, 33, 33), rgb(57, 57, 57));
    color: rgb(88, 88, 88);
}

#page-logo a {
    color: rgb(255, 0, 17);
}

header {
    position: static;
}

header a {
    color: rgb(255, 0, 17);
}

main ul {
    width: 1200px;
    margin: 0 auto 48px auto;
    display: grid;
    grid-template-columns: 600px 600px;
    gap: 10px 10px;
}

main li:first-of-type {
    background-color: rgb(250, 250, 235);
}

main li:nth-of-type(3) {
    background-color: rgb(245, 212, 224);
    grid-column: 1/3;
}

li:nth-of-type(5) {
    background-color: rgb(252, 144, 144);
}


main li {
    display: flex;
    background: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    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;
}

.actions {
    text-align: right;
}

.actions a {
    text-decoration: none;
    padding: 6px;
    color: rgb(246, 20, 20);
    border-radius: 5px;
}

.actions a:hover {
    background-color: rgb(188, 233, 247);
}