body {
  background-color: #b3d344;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  background-color: #b3d344;
  max-width: 800px;
  padding: 80px 120px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: auto; /* Center horizontally within the viewport */
}

h1, 
h2 {
  color: #496138;
}

p {
  color: #434839;
}

.copyright {
  display: inline;

}

.logo {
  margin-top: 20px;
}

.display-font {
  font-family: "minion-pro", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5.5em;
  line-height: 1;
  display: inline;
}

.body-font {
  font-family: "brother-1816", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 10px;
}

.logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  width: 100%;
}

footer p {
  color: #777;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 600px) {
  .container {
      padding: 10px;
  }

  h1 {
      font-size: 24px;
  }

  p {
      font-size: 14px;
  }

  .display-font {
    font-size: 3.5em;
  }

  .body-font {
    font-size: 1em;
  }

  .logo img {
      max-width: 100px;
  }
}