 /* Reset default styles */
 body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: black; /* Set the entire page background to black */
  color: white; /* Set default text color to white */
}

/* Header Styles */
header {
  text-align: center;
  background-color: white; /* Header background color */
  color: black; /* Header text color */
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Container Styles */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

/* Entry Styles */
.entry {
  background-color: black; /* Entry background color */
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  display: flex; /* Display entry content as a flexbox */
  align-items: center; /* Center items vertically */
}

/* Avatar Image Styles */
.avatar {
  max-width: 100px;
  border-radius: 50%; /* To make it circular */
}

/* Entry Content Styles */
.entry-content {
  flex: 1; /* Allow content to expand and take available space */
  padding-left: 20px; /* Add some space to the left of the content */
}

/* Footer Styles */
.fixed-bottom {
  position: fixed;
  bottom: 0;
  background-color: white; /* Footer background color */
  color: black; /* Footer text color */
  padding: 10px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

/* Define link styles */
.fixed-bottom a {
  color: black; /* Link text color */
  text-decoration: underline;
  margin: 0 10px;
}