body {
  font-family: "Plus Jakarta Sans", sans-serif !important;   /* using google fonts whose links are pasted in boilerplate.ejs*/
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
    flex: 1;
}


/* Navbar */
.navbar {
    height: 5rem;
    background-color: white;
}

.fa-compass {
    color: #fe424d;
    font-size: 2rem;
}

.nav-link {
    color: #222222 !important;  /* !important: to override the styling of bootstrap to our custom styling*/
}




/* Footer */
.f-info-links a {
    text-decoration: none;    /*  to remove the underline of the link of privacy and terms*/
    color:#222222;
}

.f-info-links a:hover {
    text-decoration: underline;    /*  on hovering on privacy and terms, underline is generated*/
}


.f-info-links, 
.f-info-socials,
.f-info-brand{
    width: 100%;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center; 

}



.f-info-socials i{ 
    font-size: 1.2rem;
    margin-right: 1rem;
}

.f-info {
    text-align: center;
    height: 8rem;
    background-color: #ebebeb;
    display: flex;      /*elements line up horizontally (default) as flexible items.*/
    flex-wrap: wrap;
    justify-content: center;  
    align-items: center;           /*in lecture it was : align-items: space;*/
}


/*Cards*/
.listing-card{
    border: none !important;
    margin-bottom: 2rem;
}

.card-img-top {
    border-radius: 1rem !important;
    width: 100% !important;
    object-fit: cover !important;
}

.card-body {
    padding: 0px !important;
}

.card-text {
    font-weight: 400 !important; 
}

.listing-link {
    text-decoration: none;     /*  to remove the underline of the link  of class="listing-link"*/
}


/* Card Effect */
.card-img-overlay {
    opacity: 0;
}

.card-img-overlay:hover {
    opacity: 0.2;
    background-color: white;
}



/*New Page*/
.add-btn {
    background-color: #fe424d !important;
    border: none !important;
}


/*Edit Page*/
.edit-btn {
    background-color: #fe424d !important;
    border: none !important;
}

/*show page*/
.show-img {
    height: 30vh;
}

.btns {
    display: flex;
}

.show-card {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Map */
#map { 
    height: 400px;
    width: 80%;
}