.user-show img
{
    width: 250px;
    height: 250px;
    max-width: 100%;
    object-fit: cover;
    border: 2px dashed grey;
    border-radius: 10px;
}

.users-list
{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.user-list-item
{
    width: 23%;
}

.user-list-item
{
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

.user-show-name
{
    font-weight: bold;
    font-size: 25px;
    margin-top: 20px;
}

.user-show
{
    text-decoration: none !important;
}

.user-list-item-link
{
    display: inline-block;
    max-width: 100%;
    width: 250px;
    margin-top: 20px;
}

.search-user-form input
{
    margin-right: 20px;
}

.search-user-form .button
{
    margin: 0 10px;
}

@media (max-width: 1099px)
{
    .user-list-item
    {
        width: 100%;
        margin-bottom: 50px;
        padding-bottom: 25px;
        border-bottom: 1px dashed #000;
    }

    .search-user-form .button
    {
        margin: 20px 10px 0 0;
    }
}