:root {
  --background-color: #ffffff;
  --text-color: #333333;
}

[data-theme='dark'] {
  --background-color: #333333;
  --text-color: #ffffff;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  /* align-items: center; */ /* Removed to allow content to flow */
  /* justify-content: center; */ /* Removed to allow content to flow */
  min-height: 100vh; /* Changed from height: 100vh to allow scrolling */
  margin: 0;
  padding-bottom: 50px; /* Add some padding at the bottom for better spacing */
  transition: background-color 0.3s, color 0.3s;
}

h1 {
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}

body > button { /* Target the main "Press me" button */
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  border: 1px solid var(--text-color);
  background-color: transparent;
  color: var(--text-color);
  cursor: pointer;
  border-radius: 5px;
}

.contact-form-section {
  margin: 20px auto;
  padding: 20px;
  border: 1px solid var(--text-color);
  border-radius: 8px;
  width: 90%; /* Adjust width to be a bit more flexible */
  max-width: 800px; /* Consistent max-width */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.comment-section {
  margin: 20px auto;
  width: 90%; /* Adjust width to be a bit more flexible */
  max-width: 800px; /* Consistent max-width */
  text-align: center;
}