/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #fff;
  font-family: sans-serif;
  text-align: center;
}

.content {
  padding-top: 1in; /* exactly 1 inch from the top */
}

.logo {
  max-width: 90%;
  height: auto;
}

.description {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #333;
  line-height: 1.6;
}

.copyright {
  position: fixed;
  bottom: 2in;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}
