#post-container {
    border: 1px solid black;
    border-radius: 25px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

#post-form {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#post-image-element {
    width: 400px;
}

#post-image {
    display: none;
}

#post-text {
    font-family: 'Alatsi', sans-serif;
    font-weight: 200;
    font-size: 1.25rem;
}

#post-form > button {
    align-self: stretch;
    font-family: 'Atkinson Hyperlegible';
    font-size: 2rem;
    font-weight: 600;

    color: white;
    outline: none;
    border: none;
    background: linear-gradient(45deg, #1836b2, #20c6c8);

    height: 60px;
    border-radius: 25px;

    cursor: pointer;
}