/* Reset margins and paddings for a consistent look */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set the background color for the body */
body {
  background-color: #185618;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Center the main content */
main {
  display: block;
  max-width: 800px;
  background-color: #fff;
  margin: 5vh auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Style the logo container */
.logo {
  text-align: center;
  margin-bottom: 20px;
}

/* Style the image inside the logo container */
.logo img {
  max-width: 100%;
  height: auto;
}

/* Center text inside the main area */
h1, h2, p {
  text-align: center;
  margin-bottom: 20px;
}

h1, h2 {
  color: #1e1304;
}

h2 {
  margin-bottom: 10px;
}

/* Style the divider */
.divider1 {
  height: 2px;
  background-color: #eaeaea;
  margin: 20px 0;
}

.divider2 {
  height: 2px;
  width: 50%;
  background-color: #eaeaea;
  margin: 20px auto;
}

/* Style the email link */
a {
  color: #185618;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

/* Add some responsive behavior */
@media (max-width: 768px) {
  main {
    margin: 30px 20px;
    box-shadow: none;
  }
}/*# sourceMappingURL=style.css.map */