.profile-card {
    display: inline-block;
    text-align: center;
    margin: 10px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    width: 150px;
    height: 140px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.5);
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.search-bar {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
}

.search-bar > input {
    border-radius: 20px;
}

.container h1 {
    margin-bottom: 20px;
}

h2, h3 {
    margin-top: 30px;
}

.container {
    background-color: #fffdfc45;
    box-shadow: none;
}

@media (max-width: 768px) {

    .container {
        width: 70% !important;
    }
    .profile-card {
        width: 100px;
        height: 100px;
    }
    .profile-card > img {
        width: 50px;
        height: 50px;
    }

    .profile-card > p {
        font-size: 14px;
    }

    .search-bar {
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 200px;
    }
}
