body {
  background-color: #fff;
  color: #000;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
}

.rectangular-box {
  display: flex;
  align-items: center; /* Center items vertically */
  background-color: #f1f4f9; /* Light shade of black */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.logo-image {
  width: 80px; /* Adjust the size as needed */
  height: 80px; /* Adjust the size as needed */
  border-radius: 50%;
  margin-right: 40px; /* Increased margin */
}

.text-and-time {
  display: flex;
  flex-direction: column;
}

.text-content {
  font-size: 20px;
  font-weight: 500; /* Semibold */
  color: #000; /* White text color */
  margin-bottom: 15px; /* Adjusted margin */
}

.date-time {
  font-size: 16.9px;
  font-weight: 300; /* Light */
  color: #000; /* White text color */
  margin-top: 5px; /* Adjusted margin */
}
