*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.google-font-text{
    font-family: 'Lobster', cursive;
}

.navbar {
    position:fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
}
.navbar-brand img{
    border-radius: 100%;
    border: 2px solid #0082E6;
    margin-left: 10px;
}

nav ul{
    position: relative;
    float: right;
    margin-right: 20px;
    display: flex;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a.active, a:hover{
    background:#1b9bff;
    transition: .5s;
}

.divider{
    height: 50px;
    width: 100%;
    background: #fff;
}
body{
    width: 100%;
    height: 100%;
    display:inline;
}
.container{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 25px;
    background-color: rgba(0,0,0,0);
}

.container::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("charlotte2.jpg") no-repeat center;
    background-size: cover;
    z-index: -1;
    filter:blur(50px);
}
/* columns */
.greeting{
    text-align: center;
    font-size: 15px;
    color: #fff;   
}
.greeting img{
    border: 2px solid #fff;
}
.greeting h3{
    font-size: 30px;
    font-family: 'Lobster', cursive;
    align-items: center;
    letter-spacing: 2px;
    text-shadow: 2px 1px rgb(218, 184,178);
    line-height: 60px;
}

.btn-btn{
    padding: 10px;
    border-radius: 40px;
    border:1px solid #fff;
    color: #fff;
    background-color: #0082e6;
}

.btn-btn:hover{
    background-color: rgb(218, 184,178);
}
    @media screen and (max-width:880px){
        .contact-box{
            grid-template-columns: 1fr;
        }
        .left{
            height: 200px;
        }
    }

.col-sm-12 p{
    text-align: center;
    background: #0082E5;
    color: #fff;
    border: 1px solid #0082e6;
    border-radius: 15px;
    position: relative; 
    padding: 5px;
  
}


/* footer */
.footer-nav{
    height: auto;
    width: 100%;
    text-align: center;
    background: #0082e6;
    overflow: auto;
    padding: 5px; 
    color: #fff; 
}

.footer-nav li :visited{
    color: #fff;
}
.footer-nav ul li{  /*display inline */
    text-decoration: none;
    display: inline;
    margin-left:50px;
    font-family: helvetica;  
    color:#fff;  
}
.footer-nav li a:hover{
    color: #000;
    opacity: 0.5;
    font-size: 20px;
}
.footer-nav p{
    font-family: helvetica;
    color: #000;
}
