.feedback-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: black 1px solid;
}

.profile {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.message {
    display: flex;
    flex-wrap: wrap;
    width: 20vw;
    height: auto;
    margin: 20px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.profile-name {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.star {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    margin-bottom: 20px;
}

.card-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20vw;
    margin: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 8px;
    background-color: #ffffff;
}

.card-div:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .feedback-container {
        flex-direction: column;
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* Center vertically */
    }

    .card-div {
        width: 90vw;
        height: auto;
        margin: 10px;
    }

    .message {
        width: 90vw;
    }
}

/* Media query for iPads */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .feedback-container {
        /* Adjust styles for feedback container on iPads */
        flex-direction: row;
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* Center vertically */
        /* Example adjustment */
    }

    .card-div {
        /* Adjust styles for card-div on iPads */
        width: 50vw;
        /* Example adjustment */
    }

    .message {
        /* Adjust styles for message on iPads */
        width: 50vw;
        /* Example adjustment */
    }
}