/* GLOBAL */
body {
  margin: 0;
  min-height: 100vh;
  background: #140221;
  color: #460a69;
  font-family: "Times New Roman", Times, serif;
  display: flex;
  justify-content: center;
}

a {
  color: #E15BE8;
  text-decoration: none;
  margin-right: 14px;
}

a:hover {
  text-decoration: underline;
}

/* PAGE WRAPPER */
.page {
  width: 90%;
  max-width: 1100px;
  padding: 40px 20px 60px;
}

/* HEADER BAR */
.header {
  background: #2a073d;
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 50px;
}

.header h1 {
  margin: 0;
  font-size: 36px;
  font-weight: normal;
}

/* MAIN CONTENT */
.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* IMAGE PLACEHOLDER */
.image-box {
  background: #2a073d;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.8;
}

/* TEXT BLOCK */
.text-box {
  font-size: 22px;
  line-height: 1.6;
}

/* FOOTER LINKS */
.footer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 18px;
}

/* SMALL SCREENS */
@media (max-width: 800px) {
  .content {
    grid-template-columns: 1fr;
  }

  .footer {
    position: static;
    margin-top: 40px;
  }
}