/* Navigation Bar Color */
nav{
    background-color:  #4a76c9; 
    height: 60px;   
}
.navbar-brand{
    color: #FFFFFF;
    font-size: 25px;
}
.navbar-brand:hover{
    color: #FFFFFF;
}
.full-screen-bg {
    background: #ffffff;
    background-image: url('imgs/background.jpg');
    background-size: cover;
    background-position: center;
    height: calc(100vh - 60px); /* Subtracts navbar height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer{
    background-color:  #4a76c9;
}
a{
    color: #FFFFFF;
}
.btn{
    font-size: 30px;
    background-color: #4a76c9;
    text-decoration: none;
    color: #FFFFFF;

}
.btn:hover {
    background-color: #a5c1f5;
    color: #FFFFFF;
}
.btn:visited{
    font-size: 30px;
    background-color: #4a76c9;
    text-decoration: none;
}
.montserrat-txt {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}