/* CSS Reset to Normalize Styles Across Browsers */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #262431; /* Dark background */
  color: #ffffff; /* Light text */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Links */
a {
  color: #1e90ff; /* Blue for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Buttons */
button {
  background-color: #1e90ff; /* Blue buttons */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #4682b4; /* Slightly lighter on hover */
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #e0e0e0; /* Light gray headings */
  margin-bottom: 10px;
}

h1 {
  font-size: 26px;
}

/* Inputs */
input,
textarea {
  background-color: #2c2c2c;
  color: white;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 5px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #1e90ff;
}

.leaf {
  font-size: 96px;
}
