/* === Base Layout, Typography & Background === */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  background-image: url('../assets/graph.png');
  background-repeat: repeat;
  background-size: auto;
  color: #333;
  text-align: center;
}

/* === Header === */
header {
  background-color: #a62639;
  color: white;
  padding: 1rem 2rem;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

h1 {
  margin: 0.5rem 0;
  font-size: 2rem;
}

/* === Logo === */
.logo {
  margin-top: 1rem;
  width: 256px;
  height: auto;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* === Flex Container for Main Content === */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px); /* adjust based on header/footer */
  padding: 2rem;
}

/* === Tagline === */
.tagline {
  font-style: italic;
  margin: 1rem 0;
  font-size: 1.2rem;
}

/* === Entry Link: "Come On In" === */
.entry-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  color: #a62639;
  text-decoration: none;
  border: 2px solid #a62639;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.entry-link:hover {
  background-color: #a62639;
  color: white;
  box-shadow: 0 0 10px #a62639;
}

.featured-image {
/*  width: 80vw; /* 80% of the viewport width */
/*  max-width: 800px; */ 
/*  max-height: 1200px; */
/*  height: auto; */
  display: block;
  margin: 0 auto;
}

/* === Footer === */
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}
