/*Remove the UPS Banner*/
body > header {
  display: none;
}

/*Page background*/
body > main {
  background: #fff;
}

/*Shift image down to center*/
body > main > div.container {
    margin-top: 65px;
}

/*Image properties*/
.img1 {
  margin: 0 auto !important; /*Centers image*/
  width: 50%;
}

/*Colored line under image*/
.hrLine {
  height: 10px;
  background-color: #F1F1F2;
}

/*Properties around the Continue Button*/
.col {
  border-radius: 25px;
  border: 2px solid #F1F1F2;
  padding-bottom: 30px;
  margin-top: 20px;
}

/* Below code changes button characteristics */
#ContinueBtnId {
  background-color: #FFC400 !important;
  font-size: 0px;
  border: 1px solid #FFC400 !important;
  outline: none;
}

/*Change the text on the button*/
#ContinueBtnId:after {
  font-size: 14px !important;
  color: #000;
  content: "Click to Continue";
}

#ContinueBtnId:hover {
  border: 1px solid #FFD64C!important;  /* keep same base if you like */
  background: #FFD64C!important;
}

/*Properties of text above the button*/
body > main > div.container > div.row > div.col > h3 {
  color: #000;
}

/*Background within border*/
body > main > div.container > div.row > div.col {
   background-color: #F1F1F2;
}

/*Footer properties*/
.footer {
  /* background-color: #07acf2!important; */
  font-size: 14px !important;
}
a:hover {
  /* color: #000000 !important;   /* or any contrast color you like */ */
}
