*{
    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;
}

/* MAIN SECTION*/
.greeting{
    text-align: center;
    color: #fff;
    font-family: 'Lobster', cursive;
}

.greeting h1{
    font-family: 'Lobster', cursive;
}

/* main body CARDS*/
body{
    width: 100%;
    height: 100%; 
    display: inline;   
}
.wrap{
    width: 425px;
    margin: auto;
    margin-top: 100px;
}

.card{
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.6);
    transition: 0.4s;
    width: 175px;
    background: #fff;
    text-align: center;
    font-size: 12px;
    font-family: sans-serif;
    float: left;
    margin: 10px;
 
}

.card:hover{
    box-shadow: 0 8px 16px 0 rgb(218, 184,178);
}

.container{
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 2px 16px;
    background-color: rgba(0,0,0,0);
   
}

.container::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("smalls.jpg") no-repeat center;
    background-size: cover;
    z-index: -1;
    filter:blur(50px);
}

/* 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;
}
