.cards{
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0px 0px 30px #56979F;
    max-width: 47%;

}

.cards img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cards p{
    display: flex;
    justify-content: space-around;
    padding-left: 15px;
    padding-right: 10px;
    color: black;
}

.container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-height: 200px;

}

.card-container{
    display:flex;
    gap:25px;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 30px;
    justify-content: center;
    padding-left: 8px;
    align-items: center;
}

.cards:hover{
    background-color: #efcefa;
    font-weight: bold;
}

a:hover{
    color: #efcefa;
}

a:focus{
    background-color: black;
    color: white;
}