body {
  background-image: url('background.jpg');
  background-size: cover;      
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-position: center; 
  color: black;
  font-family: Verdana;
}
h1 {
  font-family:arial;
  margin-top: 0;
  color: white;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}
p {
  font-family: sans-serif;
  color: white;
}

li {
  background-color: pink;
  border: 1px cyan;
  margin-bottom: 5px;
}


h2 {
  background-color: cyan;
  border: 1px cyan;
  margin-bottom: 5px;
}

.header-box {
  width: 70%;
  margin: 50px auto; /* centers the box horizontally */
  padding: 20px;
  background-color: #f0f0f0;
  border: 2px solid #aaa;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-image: url('tuscan.jpg');
  
}

.bio-box {
  width: 300px;
  background-color: pink; /* dark background for code */
  color: #f8f8f2;            /* light text for contrast */
  padding: 3px;
  border-radius: 8px;
  font-family: monospace;
  width: 300px;
  margin: 50px auto;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  overflow-x: auto;
  white-space: pre-wrap;
}

.bio-box h1 {
  width: 300px;
  padding: 20px;
  background-color: #f0f0f0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 35px;
}

.bio-box ul {
  list-style: none;        
  padding: 0;
  margin-top: 20px;
}

.bio-box li {
  background-color: pink;
  color: black;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid cyan;
  border-radius: 5px;
}
