html {
  background-color: #494949;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}

h1, p { 
  color: #fff;
  Font-family: "Cambria", Georgia, serif;

}

#divInstallApp {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

#installButton {
  border-radius: 12px;
  background-color: #4eb5f1;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

#installButton:hover {
  background-color: #2892d0; 
  color: white;
  border-radius: 12px;
}
