.items-container {
    padding: 30px;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}


img {
    border-radius: 15px 15px;
    width: auto;
    height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a:link, a:visited {
    color: #fff;
}

a:active, a:hover {
    color: rgb(226, 255, 171);
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card {
    margin: 20px;
    padding-top: 20px;
    padding: 20px;
    width: 500px;
    display: grid;
    border-radius: 10px;
    box-shadow: 5px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
    color: #ffffff;
    background-image: linear-gradient(to right, #033103, #086b08);
    text-align: center;
}

.card:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 1);
}