/* style.css for blog_oct23.html */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; /* Expand to the entire width of the screen */
    background-color: #030325; /* Blue header color */
    color: #fff; /* Text color for the header */
    padding: 10px;
    display: flex;
    align-items: center; /* Center content vertically */
    font-family: monospace;
    font-size: 10px;
}

body {
    background-color: #fff; /* White background */
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    justify-content: center;
    height: 100vh;
    padding-top: 100px;
}
 
.header-row {
    display: flex; /* Use flexbox */
    justify-content: space-between; /* Push the "Back" link to the right */
    width: 100%; /* Expand the row to the full width */
}
  
.header-row a {
    text-decoration: none;
    color: #fff; /* Text color for the "Back" link */
}
  
.content {
    text-align: justify; /* Center-align the content */
    width: 800px; /* Fixed width of 800px */
    margin: 0 auto; /* Center the content horizontally */
}
  
h1 {
    font-size: 28px; /* Adjust font size as needed */
    text-align: center;
}
  
p {
    font-size: 20px; /* Adj›ust font size as needed */
    line-height: 1.6;
}
  