/* 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-image: url("webbg2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: rgba(55, 85, 70, 1);
  font-family: cursive;
  margin: 0;
}

.site-header {
  background: rgba(200, 205, 160, 1);
  padding: 20px;
  text-align: center;
}
    .site-header h1 {
      margin: 0;
      font-size: 56px;
    }
    .site-header p {
      margin: 5px 0 0;
    }

.site-nav {
  background: rgba(100, 130, 80, 1);
  padding: 10px;
  text-align: center;
  position: sticky;
  top: 0;
}
    .site-nav a {
      margin: 0 10px;
      text-decoration: none;
      color: rgb(248, 248, 215);
    }

.content {
  padding: 20px;
}

.box0 {
  width: 400px;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #333;
  background-color: white;
}

.box1 {
  background: rgba(248, 248, 215, 0.6);
	box-shadow: 0 0 3px rgb(100, 130, 80);
  color: rgba(55, 85, 70, 1);
  
	max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  
	border: 3px solid rgb(100, 130, 80);
	display: flex;
  flex-direction: column; 
  align-items: center;    
	justify-content: center;
	transition: height 1s;
	text-align: center;
	border-radius:5px;
}

.box2 {
  background: rgba(100, 130, 80, 0.8);
	box-shadow: 0 0 3px rgba(35, 40, 35, 1);
  color: rgba(248, 248, 215, 1);
  
	max-width: 800px;
	max-height: 50px;
  margin: 20px auto;
  padding: 20px;
  
	border: 1px solid #333;
	display: flex;
  flex-direction: column; 
  align-items: center;    
	justify-content: center;
	transition: height 1s;
	text-align: center;
	border-radius:5px;
}


