:root {
--cassiopeia-color-primary: #34689a; 
--cassiopeia-color-link: #0097c9; 
--cassiopeia-color-hover: #97d3dd;
}
h1 {
color: #34689a;
}
h2 {
color: #34689a;
}
h3 {
color: #34689a;
}
.btn-secondary {
background:#0097c9; 
color:#ffffff;
}
.badge {
background:#f6d957;
color:#0097c9; 
}
.container-header {
  position: relative;
  z-index: 10;
  background-color: white;
  background-image: -o-linear-gradient(315deg, var(--cassiopeia-color-primary) 0%, var(--cassiopeia-color-primary) 100%);
  background-image: linear-gradient(135deg, var(--cassiopeia-color-primary) 0%, var(--cassiopeia-color-primary) 100%);
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03) inset;
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03) inset;
}
@media (max-width: 991.98px) {
  .container-header {
    position: relative !important;
  }
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
