body {
    background:#D2D9D2;
    text-align: left;
    margin: 20px;
    padding: 0;
    /*	font:normal 0.8em/1.2em verdana,aria,sans-serif;*/
    color:#666;
}

.container {
  display: grid;
  /* Defines the widths of the left, center, and right columns respectively */
  grid-template-columns: 1fr 3fr 1fr;
  gap: 0px; /* Space between columns */
  min-height: 100vh;
}

/* Optional: styling to make the columns visible */
aside, main {
  padding: 30px;
  padding-top: 30%;
}

.center-column {
  grid-column: 2; /* Specifies the middle column */
  padding: 0 100px; /* Adds 30px of padding on the left and right */
  padding-top: 10%;
  background: #D2D9D2;
  font-family: "sans-serif";
  font-size: 150%;
  font-style: normal;
  color: #006633;
}

h1, aside h3, main h3, .footer {
    text-align: center;
}

h1 {
    font-family: sans-serif;
    font-size: 2.8rem;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 5%;
    margin-bottom: 8%;
    color: white;
/*    text-shadow: 2px 2px 0px blue, -2px -2px 0px teal;*/
/*    text-shadow: 2px 2px 0px #ff0055, -2px -2px 0px #00f5ff;*/
    text-shadow: 2px 2px 0px blue, 
                 4px 4px 0px teal, 
                 6px 6px 0px green;
/*    text-shadow: 2px 2px 0px #f39c12,
                 4px 4px 0px #e67e22, 
                 6px 6px 0px #d35400;*/
}

aside {
  color: white;
  background-color: lightblue; /* Soft light blue/grey */
  border-radius: 20px;        /* Optional: rounds the corners slightly */
  text-decoration: none;
}

main {
  background: lightgray;
  border-radius: 20px;
  text-align: justify; /* --- Justify Text Lines --- */
  font-size: 1.4rem; /* Or use 1.1rem to make it cleanly scalable */
  padding: 40px 20px 20px 20px;
}

p {
    line-height: 140%; /* Multiplies the font size by 1.6 */
}

p:first-letter
{
    font-family: cursive;
    font-size: 200%;
    font-style: italic;
    font-weight: bold;
    margin-left: 1em;
    margin-right: 10px;
    line-height: 0.8; /* Adjusts vertical alignment */
    color: #4F94CD;
}

a {
    color: #FFF;
    font:normal 0.8em/1.2em verdana,aria,sans-serif;
    font-style: italic;
    font-size: 120%;
    text-decoration: none;
    border-bottom:1px dotted;
}

a:hover {
    border-bottom:1px solid;
    color:#9343B9;
}

.footer {
    width: 20%;
    padding: 10px;
    margin-top: 5%;
    margin-bottom: 7%;
    color: white;
    letter-spacing: .09em;
    border-style: double;
    border: 5px solid #ccc;
    vertical-align: bottom;
    position: relative;
    top:1px;
    background: lightblue;
    clear:both;
    margin-left: 40%;
    margin-right: 40%;
    padding:1% 0;
}
/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .container {
    /* Stacks the columns vertically on mobile */
    grid-template-columns: 1fr; 
  }
}
