.forumContainer {
    background-color: #c4bcd2;
    color: #2c2c5f;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    margin: 0 23.5% 50px 23.5%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#title {
    color: white;
    margin-top: 100px;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    background-color: hsl(240, 37%, 24%);
    background-color: hsl(245, 84%, 17%);
    margin-right: 23.5%;
    margin-left: 23.5%;
    border-radius: 15px;
    height: 80px;
}

.new-post-form {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

textarea#newPostContent {
    width: 90%;
    min-height: 100px;
    padding: 10px;
    border: 1px solid hsl(275, 80%, 14%);
    border-radius: 10px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    resize: none;
    margin-bottom: 10px;
    transition: border 0.3s ease;
}

textarea#newPostContent:focus {
    border: 2px solid hsl(275, 80%, 14%);
}

button {
    background-color: #995ef1;
    color: #dee2ed;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: hsl(275, 80%, 14%);
}


@media (max-width: 430px){
    .forumContainer{
        min-width: 400px;
        margin-right: 10px;
        margin-left: 10px;
    }
    #title{
        min-width: 400px;
        margin-left: 10px;
        margin-right: 10px;
    }
}