
/* General reset and body styling */
body {
  margin: 0;
  padding: 0;
  background-color: white;
  color: black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Heading style */
.title {
  color: #75151e;
  font-size: 2.5rem;
  margin: 2rem 0 1rem 0;
  text-align: center;
}

/* Paragraph styling */
.content {
  font-size: 1.2rem;
  max-width: 800px;
  line-height: 1.6;
  margin: 1rem;
}

/* Footer styling */
.footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #75151e;
}

.footer a{
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #75151e;
}

/* Specific style for left-aligned body */
.left-align {
  align-items: flex-start;
  justify-content: flex-start; /* this aligns vertically to top */
  text-align: left;
  padding: 2rem;
}
