body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f7f7f7;
  text-align: center;
}

header {
  background-color: #0078d7;
  color: white;
  padding: 20px 0;
}

main {
  padding: 40px;
}

button {
  background-color: #0078d7;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
}

button:hover {
  background-color: #005ea6;
}

footer {
  background-color: #eee;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.magnifier-container {
    position: relative;
}

#magnifierGlass {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #ddd;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 250%;
    display: none;
}