/* Global page styles */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;/*font*/
    margin: 0;
    padding: 0;
    background-color: #094194;
    color: #333; /*dark text for better readability*/
}

header, footer {
    background-color: #3498db;
    color: white;
    padding: 15px;
    text-align: center;
}

header h1 {
    margin: 0; /*margin remover*/
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

main {
    max-width: 800px; /*limits wdith so that it is readable*/
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

h2 {
    text-align: center;
    color: #2c3e50;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea, form button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

form button {
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Post */
.post {
    background: #ecf0f1;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.post img {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 10px;
}

.post small {
    display: block;
    color: #7f8c8d;
    margin-top: 5px;
}

footer p {
    margin: 0;
}

