body {
    background-color: cornflowerblue;
    font-family: Roboto;
}

button { 
    background: none;
    border: none;
}

.post {
    width: 50px;
}

.deleteBtn {
    position: absolute;
    right: 5px;
    bottom: 5px;
}

#entry_content {
    resize: none;
}

#form {
    display: none;
}

.postContent {
    position: relative;
    border: 1px black solid;
    border-radius: 10px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    width: fit-content;
}

.delete {
    width: 20px;
    padding: 5px;
    border: 1px black solid;
    border-radius: 10px;
}

.delete:hover {
    background-color: hsla(0, 0%, 30%, 0.247);
    color: white;
}

.photo {
    max-width: 150px;
    max-height: 200px;
}

.content {
    font-size: xx-large;
}

.author {
    text-decoration: underline;
}

.date {
    font-size: x-small;
}

.confirm {
    display: none;
}

