
body#garden-page {
  background-image: url('https://goblin99.neocities.org/Image/gardenbg.JPG');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; /* keeps background fixed on scroll */
  background-size: cover;       /* scales image to fill screen */
  margin: 0;
  padding: 0;
  height: 100vh;                /* full viewport height */
  width: 100vw;                 /* full viewport width */
}

.rubik-beastly-regular {
  font-family: "Rubik Beastly", system-ui;
  font-weight: 400;
  font-style: normal;
}

h1 {
  color: white;
  font-size: 4rem; /* or any size you like */
}

.container {
  max-width: 900px;      /* max width of your content */
  margin: 0 auto;        /* center horizontally */
  padding: 20px;         /* optional padding */
  box-sizing: border-box;
  text-align: center;    /* center text inside, optional */
}


body {
  font-family: "Underdog", system-ui;
  font-weight: 400;
  font-style: normal;
  color: white; /* optional, if your background is dark */
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  box-sizing: border-box; /* Helps with sizing */
}

.blog-post {
  background-color: rgba(0, 128, 0, 0.4); /* green with 40% opacity */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: white; /* make text white for contrast */
}

.blog-post h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 6px;
}

.blog-post p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-post img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
