@charset "utf-8";
/* CSS Document */

/* Set up the background and text colors */
body {
  background-color: #AFE6EB;
  color: #000000; /* Black text color */
  font-family: American Typewriter, serif;
}

/* Header styles */
header {
  background-color: #FFFFFF; /* White header background */
  padding: 20px;
  text-align: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

header h1 {
  font-size: 36px;
  font-weight: bold;
}

/* Navigation menu styles */
nav {
  background-color: #000000; /* Black navigation background */
  text-align: center;
  padding: 10px;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #FFFFFF; /* White text color for navigation links */
  font-weight: bold;
}

/* Main content styles */
.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #FFFFFF; /* White content background */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Blog post styles */
.post {
  margin-bottom: 40px;
}

.post h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.post p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Footer styles */
footer {
  background-color: #000000; /* Black footer background */
  color: #FFFFFF; /* White text color for footer */
  text-align: center;
  padding: 10px;
}

/* Links styles */
a {
  color: #0000FF; /* Blue link color */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
