html{
    width: 100%;
    height: 100%;
}

#body{
    font-family: 'Raleway', sans-serif;
}

/*NAV*/
#mainNav a:hover{
    text-decoration: none;
}

#homeBtn{
    display: none;
}
#homeBtn{
    margin: 16px 0 0 0;
    font-size: 1em;
    color: #1d1d1d;
    font-weight: 700;
}
.navbar{
    background-color: rgb(230, 230, 230);
}
#mainNav ul{
    border-radius: 0.5rem;
}

#mainNav .nav-link{
    font-weight: 700;
    font-size: 1.1em;
    color: #1d1d1d;
}

.nav-link:hover{
    background-color:rgb(255, 255, 255);
    border-radius: 0.5em;
    font-size: 1.5em;
}

#mainNav .logo-xl{
    color: #1d1d1d;    
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 700;
}

#mainNav .logo-xl:hover{
    text-decoration: none;
}

#menuButton{
    font-family: 'Cookie', cursive;
    font-size: 2em;
    color:rgb(112, 112, 112);
    padding: 0;
} 

#mainNav .dropdown-menu{
    overflow: hidden;
    background: rgb(230, 230, 230);
    border: 0;
    border-radius: 0.5em;
}

#mainNav .dropdown-item:hover{
    background-color:rgb(255, 255, 255);
}

#mainNav .dropdown-item{
    font-weight: 500;
    font-size: 1em;
    color: #1d1d1d;
    opacity: none;
}

#mainNav .dropdown-item:hover{
    border-radius: 0.5em;
}

.fixed-top.scrolled {
    font-size: 1em;
    background-color:rgb(230, 230, 230);
}


/*HEADER*/
#top{
    position: relative;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
}

#top .headerIMG{
    background: url(../img/money.jpg) no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    height: 60vh;
}

#top .bottom-left{
    position: absolute;
    padding-left: 3rem;
    bottom: 8px;
    font-size: 7em;
    font-family: 'Cookie', cursive;
}

/*INTROTEXT*/
section .intro{
    padding: 5em 9em 5em 9em;
}

/*LIST*/
.card-header {
    background-color: #7EA6B9;
    border: 5px solid #7EA6B9;
    padding: 2px 10px;
}

.btn{
    color: white;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn:hover{
    color: white;
    text-decoration: none;
}
 .buffer{
     height: 9rem;
 }
 
/*Footer*/
.footer{
    padding: 25px 0 0 0 ;
    background-color:  rgb(112, 112, 112);
    color: white; 
}

.copyright{
    min-width: 230px;
}

footer a{
    color: white;
    text-decoration: none;
}

footer a:hover{
    font-weight: 600;
    color: #7EA6B9;
    text-decoration: none;
}

@media screen and (max-width: 1010px){

    #coverImg{
        display: none;
    }

    #homeBtn{
        display: block;
    }

    #mainNav .logo-xl{
        font-size: 2.4rem;
    }

    #mainNav .dropdown-menu{
        background: rgb(247, 247, 247, 0,9);
    }

    #menuButton i {
        background-color: white;
    } 
    
    /*HEADER & INTRO*/
    #top div.bottom-left{
        font-size: 3rem;
        padding-left: 1rem;
    }

    section div.intro{
        padding: 2rem 0 2rem 0;
    }
    /*FOOTER*/
    .footer .row{
        margin: 0;
        padding: 0px;
    }

    .footer .copyright{
        display: flex;
        justify-content: center;
    }

    .footer #terms{
        display: flex;
        justify-content: center;
    }
  
}
    


