
 /* Sets up the background and center the objects and text */
h1 {color:white;}
body {
  left: 400px;
  color: #FFF8DC; 
  width: 75%; 
  font-family: FreeMono, monospace; 
  line-height: 1.4; 
  margin: 20; 
  padding: 20; 
 	background:  url("https://lh3.googleusercontent.com/pw/AP1GczO8G8Vf92LcpDsw9zmWK5_XVu2VvV3p5LYBCfafzzqc88Q4Dk_D1aO4eUcef57CT0V41Si5oXMwSkG_SEKpg60V-HPH7ccG0WMfqSv-IZCGwLS4t1g=w2400") center fixed; 
  background-size: cover; 
	margin-left: auto;
  margin-right: auto;
  width: 53%;
  text-align: center;}

 /* Adds a layer on top of the background image */
body::after { 
  content: ""; 
  position: fixed; 
  inset: 0;
  background: rgba(20,20,40,0.40); 
  z-index: -1; }

header { 
  font-family: FreeMono, monospace, bold; 
  border: 4px solid #FF7F50; 
  background: rgba(40, 40, 40, 0.65);
  padding: 30px; 
  border-radius: 5px; 
  margin-bottom: 40px}

h3 { 
  border: 4px solid #FF7F50; 
  background: rgba(40, 40, 40, 0.65);
  padding: 30px; 
  border-radius: 5px; 
  margin-bottom: 40px}

 /* Sets up a sidebar and pushes it to the right */
.sidebar { 
  position: fixed; 
  top: 50%; 
  left: 1150px; 
  transform: translateY(-50%);
  width: 300px; 
  background-color: rgba(150, 150, 150, 0.75); 
  
  border-radius: 15px; 
  padding: 20px; max-height: 85vh; 
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.25); 
  box-sizing: border-box; }
 /* Adds a glow when hovered */
.sidebar:hover{
  box-shadow: 0 0 20px 5px rgba(255, 150, 0, 0.7);
  
  
}


 /* Sets up the other sections to have individual borders and backgrounds */
.summary, .preamble, .explanation, .participation, .benefits{ 
  background: rgba(70, 70, 120, 0.7);
  border: 4px solid #FF7F50; 
  border-radius: 20px;
  padding: 10px; 
  margin-bottom: 25px;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.1s;
}

.summary:hover, .preamble:hover, .explanation:hover, .participation:hover, .benefits:hover{
  transform: scale(1.1);
  
  
}


 /* Sets up the background and border for the last section */
.requirements{
  background: rgba(120, 70, 70, 0.7);
  border: 4px solid #FF7F50; 
  border-radius: 20px;
  padding: 10px; 
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.1s;
  
}
  
.requirements:hover{
  transform: scale(1.05);
  
  
}

.intro{
  font-family: URW, Chancery, L, cursive
  
  
}

