body{
    font-family: "National Park", sans-serif;
    background-color: lightblue;
    margin: 20px auto;
    text-align: center;
    max-width: 50%;
}

h1{
    color: rgb(62, 62, 208);
}

button{
    padding: 9px 12px;
    margin: 5px;
    cursor: pointer;
    background-color: rgb(62, 62, 208);
    border: none;
    color: white;
    border-radius: 8px;
    transition: all .5s ease;
}

button:hover{
    background-color: rgb(108, 108, 194);
}

form{
    margin-top: 20px;
}

label{
    display: block;
    margin-bottom: 5px;
    font-style: italic;
}

input, textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: "National Park", sans-serif;
}

ul{
    list-style: none;
    padding: 0;
}

.postItem{
    background-color: rgb(177, 212, 223);
    border: 1px solid #a1a6c1;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.editForm{
    display: none;
    margin-top: 10px;
}