#creatorStuff {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
}

#creatorStuff button {
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 1.2rem;
    cursor: pointer;
}

#edit {
    background-color: #007bff;
    transition: .3s;
}

#edit:hover {
    background-color: #509ff3;
    transition: .3s;
}

#delete {
    background-color: #dc3545;
    transition: .3s;
}

#delete:hover {
    background-color: #91121f;
    transition: .3s;
}

#postContent {
    width: 70%;
    margin: 16px auto;
    border: 4px solid #9dbcff;
    padding: 16px;
    border-radius: 16px;
    min-height: 420px;
}

.upperDiv {
    float: right;
}

.upperDiv img {
    max-width: 360px;
    max-height: 360px;
    margin: 8px;
}

.mainText {
    flex-direction: column;
    align-items: flex-start;
    margin: 32px;
}

.centerer {
    display: flex;
    flex-direction: column;
}

form textarea {
    width: 100%;
    min-height: 200px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 8px 0;
}

form input[type="submit"] {
    font-size: 1.4rem;
    width: 50%;
    margin: 32px auto;
    font-weight: bold;
    padding: 16px;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

#editButton {
    font-size: 1.2rem;
    padding: 8px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin-top: 8px;
}

#editButton:hover {
    background-color: #509ff3;
    transition: .3s;
}

#overrideButton {
    background-color: #2be412;
    color: black;
    transition: .3s;
}

#overrideButton:hover {
    background-color: #1b9a0b;
    transition: .3s;
}

@media screen and (max-width: 1200px) {
    .upperDiv img {
        max-width: 250px;
        max-height: 250px;
    }
}

@media screen and (max-width: 800px) {
    .upperDiv {
        float: none;
        text-align: center;
    }
    .upperDiv img {
        max-width: 200px;
        max-height: 200px;
    }
}
