
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
  background-color: white;
  color: #8B5E3C;
}


header {
  margin-top: 50px;
}

h1 {
  font-size: 2.5em;
  margin: 10px 0;
  font-weight: bold;
}

p {
  font-size: 1.2em;
  letter-spacing: 3px;
  color: #8B5E3C;
}


#start-container {
  margin-top: 30px;
}

#start-button {
  font-size: 1em;
  padding: 15px 20px;
  background-color: #f4f4f4;
  border: none;
  color: #8B5E3C;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.4s;
}

#start-button:hover {
  background-color: #e0d6d6;
}


#visual-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

