.shoe{
    text-align: center;
    background-color: #4F959D;
    color: #F6F8D5;
    padding: 10px;
    font-size: large;
}

.container {
    display: flex;
    margin: 15px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background-color:#4F959D;
    border-radius: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 280px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 50%;
    border-radius: 10px;
}

.card img:hover{
    box-shadow: 1px 1px 15px 0 #4F959D;
    border-color: #4F959D;
    transition: 0.3s;
    transform: scale(1.2);
    margin-bottom: 20px;
}
    
.card h3 {
    margin: 15px 0 10px;
    font-size: 1.4em;
    color: #fff;
}

.card p {
    color:#F6F8D5;
    font-size: 1em;
    margin-bottom: 15px;
}

.card button {
    position: sticky;
    justify-content: center;
    background: #98D2C0;
    color:#205781;
    font-weight: bold;
    border: none;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1em;
    transition: 0.3s;
    box-shadow: 0 0 3px 0 black;
}

.card button:hover {
    background:#205781;
    color: #98D2C0;
    box-shadow: 0 0 5px 0 black;
}