body {
    font-family: 'garamond', serif; /* Classic journal font */
    /* background-color: rgba(214, 188, 220, 0.7); Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: fit-content;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.journal-page {
    background-color: #ffffff;
    width: 700px;
    padding: 40px 50px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    line-height: 1.6;
    color: #333;
    background-image: 
        linear-gradient(to bottom, transparent 24px, #e6e6e6 25px), /* Lined paper effect */
        linear-gradient(to right, #f0f0f0 0px, #f0f0f0 1px, transparent 1px); /* Left margin line */
    background-size: 100% 25px, 20px 100%; /* Adjust line spacing and margin width */
    background-repeat: repeat-y, no-repeat;
    background-position: 0 0, 45px 0; /* Position the margin line */
}

.date-line {
    font-size: 0.9em;
    color: #888;
    text-align: right;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    /* padding-bottom: 5px; */
}

.entry-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

.entry-content {
    margin-bottom: 15px;
    text-indent: 30px; /* Indent paragraphs like a written journal */
}

.entry-signoff {
    text-align: end;
    margin-top: 20px;
    color: #555;
}

@font-face {
  font-family: 'garamond';
  src: url('fonts/AppleGaramond-Light.ttf') format('truetype');
  font-weight: normal; /* Optional: define weight */
  font-style: normal; /* Optional: define style */
}

a {
    color: #000;
    text-decoration: 1px underline;
}