
body {
  background-color: white;
  margin: 0;
  font-family: "Adobe Garamond Pro", Garamond, serif;
  color: blue;
  font-size: 14px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Positioning for desktop */
.bottom-left {
  position: absolute;
  bottom: 25px;
  left: 30px;
}

.bottom-right {
  position: absolute;
  bottom: 25px;
  right: 40px;
}

a {
  text-decoration: none;
  color: #0000EE; /* classic blue */
}

a:hover {
  text-decoration: underline;
  color: #0000EE;
}

img.button {
  width: 180px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

img.button:hover {
  transform: scale(1.05);
}


/* Responsive layout for mobile */
@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertically center content */
    align-items: center;       /* horizontally center content */
    height: 100vh;
    padding: 0;
  }

  .bottom-left, .bottom-right {
    position: static;
    margin: 12px 0;
    text-align: center;
  }

  img.button {
    width: 120px;
  }
}


