/*!****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/home/style.css ***!
  \****************************************************************************/
/* General body styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background-color: #f0f2f5;
  color: #1c1e21;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

/* Container for the content */
.container {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

/* Main title */
h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  margin-bottom: 10px;
}

/* Subtitle */
p {
  font-size: clamp(1rem, 4vw, 1.25rem);
  color: #606770;
  margin-bottom: 30px;
}

/* Start button */
#startButton {
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 6px;
  border: none;
  background-color: #1877f2;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#startButton:hover {
  background-color: #166fe5;
}

