body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffffff; /* Set the entire background to white */
}
.container {
    width: 55%;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    box-sizing: border-box;
    max-width: 1152px; /* 60% of 1920px */
}
.feed-item {
    background-color: #ffffff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1152px) {
    .container {
        width: 100%;
        margin: 0 10px; /* Small margin on sides for smaller screens */
        box-shadow: none; /* Remove shadow on smaller screens */
    }
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}


body {
    -webkit-tap-highlight-color: transparent;
}
