/* 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." */

body {
  /*background-color: white;*/
  color: black;
  font-family: Verdana;
}


.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.bg-greenFlowers { 
  background-image: url("1057.png");
  background-repeat: repeat;
}

.bg-greenCubes { 
  background-image: url("1053.png");
  background-repeat: repeat;
}

.bg-orangeFlowers { 
  background-image: url("1051.png");
  background-repeat: repeat;
}

.bg-redCubes { 
  background-image: url("1037.png");
  background-repeat: repeat;
}

.bg-waterGifOne { 
  background-image: url("waterani.gif");
  background-repeat: repeat;
}

.bg-ebGIFone { 
  background-image: url("ebGIFone.gif");
  background-repeat: repeat;
}


.text-box {
  position: relative;
  background-color: #f0f0f0; /* box background */
  border: 2px solid #333;    /* border around box */
  padding: 15px;             /* space inside the box */
  width: fit-content;        /* box fits text nicely */
  
  overflow: hidden;
  
  color: black;
}


/* whitening layer */
.text-box::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(255, 255, 255, 0.6); /* ← THIS does the whitening */

  z-index: 0;
}

/* keep text above it */
.text-box * {
  position: relative;
  z-index: 1;
}


.hidden {
  display: none;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  border: none;
  /* background: #eee; */
  font-size: 16px;
}

.accordion-btn:hover {
  background: rgba(255, 255, 255, 0.6); /* ← THIS does the whitening */
}

.accordion-content {
  display: none;
  padding: 10px;
  /* background: #f9f9f9;*/
}

 .wrapper {
     display:flex;
     flex-wrap:wrap;
     height:auto;
     width:100%;
}


.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.layout {
  display: flex;
  gap: 1rem;
}

.content {
  flex: 3;
}

.sidebar {
  flex: 1;
}

/* must go at bottom */
@media (max-width: 700px) {
  .layout {
    flex-direction: column;
  }
}




