/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');

/* Sets the background and base font for the entire page */
body {
  background-color: #ffffff;
  color: #ffffff;
  font-family: Anta, sans-serif;
  line-height: 1.6;
  margin: 0;

}

/* Styles all level-1 headings */
h1 {
  color: #00704a;
  text-align: center;
}

/* Styles all paragraphs */
p {
  margin-bottom: 15px;
}

/* Changes link appearance and hover effect */
a {
  color: #d9534f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.central_image {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  height: 100vh;       /* Full screen height */
  width: 100vw;             /* Full screen width */
}

.responsive-central_image {
  max-width: 80%;         /* Prevents image from being wider than screen */
  max-height: 80%;            /* Maintains aspect ratio while resizing */
}
