#exercise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.exercise-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    background: #f9f9f9;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.exercise-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.exercise-item img {
    max-width: 100%;
    border-radius: 5px;
}
.view-gif {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 3px;
}
.view-gif:hover {
    background: #005177;
}
.gif-container {
    margin-top: 10px;
}
