/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease; /* moved the transition here as it's a general style */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    text-align: center;
}

.motto {
    font-style: italic;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

#postList {
    padding: 10px;
    border: 1px solid #ccc;
    margin: 10px 0;
    background-color: #f9f9f9;
}

#postList div {
    padding: 5px 0;
    border-bottom: 1px solid #e1e1e1;
}

#postList div:last-child {
    border-bottom: none;
}

#postList a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

#postList a:hover {
    color: #0077cc;
}