@charset "UTF-8";
/* ###DOWNLOAD BUTTONS### */
.btn {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}
/* unvisited link */
.btn a:link {
  color: white;
  text-decoration: none;
}

/* visited link */
.btn a:visited {
  color: white;
  text-decoration: none;
}

/* mouse over link */
.btn a:hover {
  color: white;
  text-decoration: none;
}

/* selected link */
.btn a:active {
  color: white;
  text-decoration: none;
}