.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


textarea {
    resize: none;
}

.howl-create {
    width: 70%;
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #8a72c0;
}

.howl-list {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width:600px) {
    .howl-create {
        width: 50%;
    }
    .howl-list {
        width: 50%;
    }   
}

#howl-message {
    margin: 10px;
    border-radius: 5px;
}

.button-placement {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#howl-post {
    background-color: white;
    width: 20%;
    margin: 10px;
    padding: 5px;
    border-radius: 5px;
    border-color: white;
}

.howl {
    border: 1px solid black;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

#post-info {
    width: 100%;
    background-color: #8a72c0;
    color: white;
    display: flex;
    padding: 2px;
    align-items: center;
}

#user-details {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
}

#post-message {
    padding: 5px;
    font-size: 15px;
}

#time {
    white-space: nowrap;
    font-size: 15px;
    padding-right: 5px;
}

#user-page-link {
    display: flex;
    flex-direction: row;
    align-items: center;
}