body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* White background */
}

.registration-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.registration-form {
    background-color: #000000; /* Black background */
    padding: 20px;
    border-radius: 8px;
    color: #ffffff; /* White font color */
    width: 300px;
}

.registration-form h2 {
    text-align: center;
}

.registration-form label {
    display: block;
    margin: 10px 0 5px;
}

.registration-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.registration-form button {
    background-color: #ffffff; /* White button background */
    color: #000000; /* Black button text color */
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}


.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-form {
    background-color: #000000; /* Black background */
    padding: 20px;
    border-radius: 8px;
    color: #ffffff; /* White font color */
    width: 300px;
}

.login-form h2 {
    text-align: center;
}

.login-form label {
    display: block;
    margin: 10px 0 5px;
}

.login-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.login-form button {
    background-color: #ffffff; /* White button background */
    color: #000000; /* Black button text color */
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Add the following styles for the profile section */
.dashboard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profile-section {
    text-align: center;
}

.profile-image {
    border: 2px solid #000000; /* Thin black border */
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Add the following styles for the upload form section */
.upload-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.upload-form-section {
    text-align: center;
}

.upload-form-section h2 {
    margin-bottom: 20px;
}

.upload-form-section input {
    margin-bottom: 10px;
}

.upload-form-section button {
    background-color: #ffffff; /* White button background */
    color: #000000; /* Black button text color */
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}


.disply_post_content {
    margin-right: 10%;
    margin-left: 10%;
    margin: 0 auto;

    color: #000000;
}

.testing {
    height: 500px;
    width: 100%;
    background-color: aqua;

}







<style>
    .member-posts-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .posts-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .post-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .member-post {
        width: calc(25% - 20px);
        margin-bottom: 20px;
        text-align: center;
    }

    .post-image {
        width: 175px;
        height: 205px;
        object-fit: cover;
        border-radius: 5px;
    }

    h2, h3 {
        color: #333;
    }
</style>
