/*browser reset*/
*{
  padding: 0;
  margin: 0;
}

body{
  background: rgb(210,180,140); /*backup to background img*/
  background-image: url(../image/old-paper-texture-background_118047-1365.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  height: 1000px;
}


header{
  position: fixed;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-basis: auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 150px;
  padding-top: 10px;
  background-image: url(../image/old-paper-texture-background_118047-1365.webp);
}
img{
  max-height:132.35px; 
  max-width:105.9px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgb(0,0,0);
  margin: 0 20px;
}
header h1{
  font-family: cursive;
}
a{
  color: rgb(0,0,0);
}

/* container for employment and miscl info*/
main{
  position: relative;
  top: 190px;
  max-width: 900px;
  margin: 0 auto;
  font-size: larger;
}
li h2{
  padding: 10px;
}
article{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 5%;
  padding: 10px;
  line-height: 1.5;
}
.bold{
  font-weight: bold;
}
.right{
  width: 400px;
  margin-left: 10px;
}

/* container for the print button*/
footer{
  position: fixed;
  bottom: 10px;
  width: 100%;
  z-index: 1;
  padding: 10px;
}
#print{
  text-align: center;
  width: 100px;
  border: 0;
  border-radius: 15px;
  padding: 10px;
  background: rgb(45, 122, 47);
  color:rgb(250, 250, 250);
  font-weight: bold;
  letter-spacing: 2px;
  float: right;
  margin-right: 30px;
  border-top: solid 3px hsl(138, 2%, 44%);
  border-right: solid 3px hsl(138, 2%, 44%);
}
#print:hover{
  background: rgb(207, 120, 21);
  color:rgb(0,0,0);
  cursor: pointer;
}