body {
  margin: 0;
font-family: "Titillium Web", serif;
  background-color: white;
  color: black;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 20px;
  left: 20px;
}

.header h1 {
  margin: 0;
  font-size: 50px;
  font-weight: bold;
}

.header h2 {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: normal;
}

.footer-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
}

.footer-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.footer-left .btn {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-left .btn:hover {
  background-color: white;
  color: black;
  border: 1px solid black;
}

.image-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-container img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}
