/* style.css */

body {
  margin: 0;
  padding: 0;
  background-color: #F6F0E8;
  color: #343A40;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  align-items: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
  justify-content: space-between; /* pushes header and footer apart */
  min-height: 100vh;
}

.container {
  padding: 2rem;
  flex: 1; /* Allows the container to take available space and push the footer down */
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  color: #3C6B59;
}

p {
  font-size: 1.2rem;
  color: #343A40;
  max-width: 500px;
  margin: 0 auto;
}

footer {
  font-size: 0.9rem;
  padding: 1rem 0;
  color: #343A40;
  background-color: #F6F0E8;
  width: 100%;
  text-align: center;
}