/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
h1 {
    text-align: center;
    background: radial-gradient(circle, #7E997A, #31572B) ;
    color: #142612 ;
    font-style: italic;
    font-size: 3em;
    transition: all .4s ease-in-out;
}
h1:hover {
  
  letter-spacing: 0.3em;
}
  


body {
  /* 1. Base layer: The forest background image */
  background-image: url("https://ambers-sunroom.neocities.org/wp4718274-forest-rain-wallpapers.jpg");
  background-size: 120%;
  background-attachment: fixed;
  color: black;
  font-family: Verdana;
  /* 2. Setup layout context */
  margin: 0;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

/* 3. Transparent Overlay layer: The Rain GIF */
body::before {
  content: "";
  position: fixed;
  inset: 0;        /* Spans the layer across the entire screen */
  z-index: -1;     /* Places the GIF behind your website content */
  
  background-image: url("https://ambers-sunroom.neocities.org/placidplace-rain-10807.gif");
  background-size: cover;
  
  /* 4. ADJUST GIF OPACITY HERE */
  opacity: 0.3;    /* 0.0 is invisible, 1.0 is fully bright */
  
  pointer-events: none; /* Ensures users can still click buttons on your page */
}

.currently { 
  width: 20em; 
  float: left; 
  text-align: center; 
  color: white; 
  background: #6BA662;
  padding: 0;
  padding-bottom: 20px; 
  margin: 1em; 
  z-index: 1; 
  position: relative; 
  border-radius: 15px; 
  padding-top: .5px; 
  
  /* FIX: Use standard block sizing instead of Grid */
  display: block;
  box-sizing: border-box; 
}

#list1 { 
  margin-bottom: 50px; 
  list-style-type: none !important; 
  padding: 0; 
  margin: 0; 
  font-size: 20px;
  color: #336328;
  transition: all .4s ease-in-out;
}

#list1 > li:hover { color: #142612;}


#h2currently { 
  border: 2px solid #96CF88; 
  border-radius: 8px; 
  padding: 5px; 
  background: #96CF88; 
  margin: 0; 
  box-sizing: border-box;
  color: #142612;

}




