body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

header {
  background-color: #e98008;
  color: white;
  padding: 1em;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1em;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2em;
  text-align: center;
}

button {
  background-color: #e98008;
  color: white;
  border: none;
  padding: 1em 2em;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #e98008;
}

footer {
  background-color: #e98008;
  color: #666;
  text-align: center;
  padding: 1em;
  position: relative;
  bottom: 0;
  width: 100%;
}


html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  background-color: #f56a00;
  color: white;
  text-align: center;
  padding: 10px 0;
}

#installBtn {
  background-color: blue;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.image-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.image-links img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-links img:hover {
  transform: scale(1.05);
}


