/*
NEW COLOR PALETTE
black           #2e2e2f
navy blue       #000080
my cobalt blue  #004aad - used with Canva
baby blue eyes  #a1caf1
ghost-white     #f8f8ff
*/
body {
    /*padding-bottom: 50px; */
    /*background-color: #e8eef1; */
    background-color: #B1C9E8;
    color: #2e2e2f;
}

header {
  background-color: #004aad;
  color: white;
}
header a {
  color: white;
  text-decoration: none;
  text-align: center;
  align-items: start;
  font-size: 2rem;
}
header a:hover {
  color: white;
}
header p {
  text-align: center;
  color: white;
  font-size: 1.5rem;
}
header .nav-link {
  color: white;
}

#mynavbar {
  align-items: right;
  text-align: right;
}

footer {
  flex-shrink: 0;
  background-color: #004aad;
  color: white;
}

footer a {
  color: lightyellow;
}

footer a:hover, header .nav-link:hover {
  color: yellow;
}

h1 {
  text-align: center;
}

h2 {
    font-style: italic;
    text-align: center;
}
/* FORM STYLES */
label {
    font-variant: small-caps;
  }
  
.form-check {
    display: inline-block;
    font-weight: normal;
    margin: 0 1rem;
  }

  /* MESSAGE STYLES */
.message {
  background-color: palegoldenrod;
  color: black;
}
  
.messagedebug {
  background-color: slategray;
  color: white;
}
.messageinfo {
  background-color: azure;
  color: darkblue;
}
  
.messagesuccess {
  background-color: lightgreen;
  color: darkgreen;
}
  
.messagewarning {
  background-color: lightgoldenrodyellow;
  color: darkgoldenrod;
}
  
.messageerror {
  background-color: pink;
  color: darkred;
}

  /* RATING BAR */
#rating-container {
  background-color:silver;
  border-radius: .5em;
  max-width: 5rem;
  padding: 2px;
}

#rating {
  background-color: gold;
  border-radius: .5em;
  height: 10px;
}