/* Our blue = #12185B
Our gray = #757888 
Our green = #206C21*/

body{
    font-family: 'lato', sans-serif;
}
footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #12185B;
    color: white;
}

.underline{
    text-decoration: underline;
}
.blue{
    color:#12185B;
}
.black{
    color: black;
}
.green{
    color: #206C21;
}
.bold{
    font-weight: bold;
}
.italic{
    font-style: italic;
}
.center{
    text-align: center;
}
.justify{
    text-align: justify;
}
.spacer{
    height: 20px;
}


.navLink{
    color: #12185B;
    font-size: 20px;
    padding: 3px;
    

}
.bottomLink{
    color: white;
    font-size: 18px;
    padding: 3px;
}
.graySpace{
    height: 20px;
    width: 100%;
    background-color: #12185B;
}
.demoButton{
    background-color: #12185B;
    width: 150px;
    margin: 20px auto auto auto;
    position: relative;
    text-align: center;
    padding: 15px;
    border-radius: 5%;
    color: white;
}
.demoButton a{
    color: white;
}
.dropdown-content1{
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    font-size: 16px;
    z-index: 1;
    right: 20px;
    bottom: 90px;
    -webkit-text-stroke: 0 black;
    text-align: left;
    border-radius: 20px;
}

#nsfWord{
    text-decoration-thickness: 0.05em;
    text-decoration-color: black;
}
#nsfDefine{
    display: block;
    position: absolute;
    bottom: 10px;
    background-color: rgb(255,255,255);
}
.dropdown:hover .dropdown-content1 {display: block;}
#header{
    justify-items: center;

}
#headerLogo{
    width: 150px;
    display: block;
    position: relative;
    margin: 5px auto 0 auto;
    
}
#headerNav{
    margin: 10px auto 0 auto;
    position: relative;
    width: 99%;
   text-align: center;
}
#headerBottom{
    
    margin-top: 5px;
}
.dropbtn {
    color: #12185B;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  font-size:16px;
  z-index: 1;
}

.dropdown-content a {
  color: #12185B;
  padding: 12px 16px;
  text-decoration: underline;
  display: block;

}

/*.dropdown-content a:hover {background-color: #115714;}*/

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: white;}
.anchor{
    margin-top: 50px;
}
#privacyMain, #termsMain{
    width: 80%;
    margin: auto;
    
}