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

/* normal, unvisited link */
a:link {
  color: rgb(235, 219, 178);
}

/* visited link */
a:visited {
  color: rgb(177, 98, 134);
}
body {
  margin: 0;
  font-family: Arial, sans-serif;


/*  background-image: url("pix/woods1.jpg");*/
  background-image: url("pix/bg3.png");
  background-size: 200px 200px;
  background-position: center;
  background-repeat: repeat;

  height: 100vh; 

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  
}

.text-box {
  
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  margin:10px 10px 10px 10px;
  color: rgba(235, 219, 178, 1);
  padding: 30px;
  border-radius: 12px;

  max-width: 950px;
  text-align: left;

  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
   border: 3px solid rgba(235, 219, 178, 1);
}
.head-box {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  margin:10px 10px 10px 10px;
  color: rgba(235, 219, 178, 1);
  padding: 30px;
  border-radius: 12px;

  max-width: 950px;
  text-align: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

h1 {
  margin-top: 0;
}