/* Add this at the top of your styles.css for a basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: white;
}

.container {
  margin-top: 20px;
}

/* Style for form inputs, textarea, and button */

/* Add your form styles here */

/* Style for the hexagons */
#hexagon-wrapper {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as needed */
  overflow: hidden;
  margin-top: 20px;
}

.hexagon {
  position: absolute;
  width: 50px; /* Size of hexagons */
  height: 50px;
  background-color: transparent;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: background-color 0.5s ease-out;
}
