body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}
a {
    text-decoration: none;
    color: blue;
}

        .navigator {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: #f0f0f0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .navigator .left a,
        .navigator .right a {
            margin: 0 10px;
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }

        .navigator .left a:hover,
        .navigator .right a:hover {
            color: #007BFF;
        }
        .logo{
            color: blue;
        }

.posts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.writehere {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5vh;
    padding-top: 5vh;
}

.writehere textarea{
    width: 60%;
    height: 150px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    resize: vertical;
}

.writehere button{
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.post{
    width: 60%;
    background-color: #33333339;
    border-radius: 5px;
}