

#container{
    /* border: 1px solid #000; */
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 56px;
    padding: 5px;
}

.box{
    width: 400px;
    height: 650px;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: rgb(193, 237, 238);
}

.img{
    width: 80%;
    height: auto;
    object-fit: cover;
}

.green{
    color: green;
}
.red{
    color: red;
}