body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
    color: #333;
}

/* PAGE CONTAINER */

body {
    padding: 30px;
}

/* HEADER */

h1 {
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}

/* NAVIGATION */

nav {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: bold;
}

nav a:hover {
    color: #ffd166;
}

/* BLOG POSTS */

h2 {
    color: #444;
    margin-bottom: 10px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 25px 0;
}

/* POST BOXES */

.post {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

/* FORMS */

form {
    background-color: white;
    padding: 25px;
    width: 550px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

/* INPUTS */

input[type=text],
input[type=password],
input[type=email],
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

/* BUTTONS */

input[type=submit] {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

input[type=submit]:hover {
    background-color: #555;
}

/* LINKS */

a {
    color: #0066cc;
}

a:hover {
    color: #004999;
}

/* COMMENTS */

small {
    color: gray;
}