    body {
      background-image: url('https://cdn.pixabay.com/photo/2022/08/18/19/00/water-7395510_960_720.jpg');
    }

      .center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 30%;
  height: 30%
}
         
body {
	font-family: "Consolas", "Arial", sans-serif;
	font-size: 18px;
	background: #8dd0fb url("/img/pexels-mdsnmdsnmdsn-1054022_med_optimized.jpg"); /*Replace this with your own background image.*/
	text-align: center; /*Text is centered by default.*/
	background-size: cover;
	background-attachment: fixed;
  background-position:center;

}

li {
  text-align: left; /*You can change this, but centered lists can look kind of weird.*/
  margin-left: 20px
  }

h1 {
  text-align: center;
  font-size: 26px;
  }

h3 {
  text-align: center;
  font-size: 19px;
  color: darkgray;
    letter-spacing: 4px;
  } 
  

         
blockquote {
  font-style: italic;
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}

blockquote p {
  display: inline;
} 
         
details:hover {
  cursor: pointer;
}
          
     
/*Use as the class of spans or divs you want to have normal left-aligned text.*/
/*You can combine classes by putting them together with a space, i.e. <div class="box left"> will be a div using "box" and "left" styles.*/
.left {
  text-align:left;
  }

/*A box that stays at a fixed height and scrolls when content gets too long.*/
.box {
  margin: 0 auto;
	overflow: auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 32em;
	height: 24em;
	margin-top: 10.5%;
	padding: 3.5em 4em;
}

.box-round {
  margin: 0 auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 32em;
	height: 24em;
	margin-top: 7.5%;
	overflow: auto;
	padding: 20px;
	padding-bottom: 30px;	
	border-radius: 50%;
	padding: 7.5em 6em;
}

/*A box that doesn't scroll, instead growing in height.*/
.box-noscroll {
  margin: 5% auto 4% auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 32em;
	padding: 3.5em 4em;
}
         
  .headerimg {
      
      background-color: lightgrey;
      padding-top: 6em; 
      padding-bottom: 1em; 
      background-blend-mode:soft-light; 
      background-repeat:no-repeat; 
      background-position: center center;
             
         }

/*Old box attributes. Use if you want an old-style box.*/
.old {
	margin-top: 3%;
	margin-bottom:3%;
	width: 460px;
	min-height:50px;
	padding: 20px;
	padding-bottom: 30px;	
  }
  
/*Prevent overflow of large images.*/
.box img, .box-noscroll img, .box-round img {
  max-width: 100%;
  height: auto;
  }


/*For narrow screens.*/
@media (max-width: 500px) {
  .box, .box-noscroll {
    width: 75%;
    }
  }
  
/*Mobile compatibility*/
@media (orientation: portrait) {
  .box, .box-noscroll {
    width: 75%;
    }
  }         
 