body{
    background-color:midnightblue
  }
 

 /* styles.css */
.guestbook-entry {
  color:midnightblue;
}

      /* Optional: Add some CSS styling to your header */
      header {
          background-color:#f1b5da;
          color: #f1b5da;
          padding: 5px;
          text-align: center;
          margin-bottom: 100px; /* Adjust the margin as needed */
          margin-top: 0px;
      }


.content-box {
    /* Border properties */
    border: 10px solid white; /* Border style and color */
    border-radius: 10px; /* Border radius for rounded corners */

    /* Padding inside the box */
    padding: 20px;

    /* Margin outside the box */
    margin: 50px;

    /* Background color of the box */
    background-color: #f1b5da;

    /* Box shadow for a subtle 3D effect */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  /* Custom styles for the text inside the box */
  .content-box h2 {
    color: #7b2054; /* Text color */
  }

  .content-box p {
    color: #642749; /* Text color */
  }

  /* styles.css */
.guestbook-entry {
  color: midnightblue;
}