/* This CSS was all made by AI */

/* Center everything in the page */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #f5f5f5; /* default light background */
}

/* Rounded square button */
.rounded-square {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: white;
  font-family: sans-serif;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  background-color: teal; /* default color for light mode */
}

.rounded-square:hover {
  transform: scale(1.1);
  background-color: #008080; /* slightly darker teal on hover */
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  body {
    background: #1e1e1e; /* dark background */
  }

  .rounded-square {
    background-color: #00cccc; /* lighter teal for dark mode */
    color: black;
  }

  .rounded-square:hover {
    background-color: #009999;
  }
}
