/* Main components START */
:root {
    --bg-color: rgb(255, 252, 240);
    --foot-color: rgb(25, 34, 23);
}

body {
    background-image: url(images/Background.jpg);
    backdrop-filter: blur(8px);
}

.container {
    background-color: var(--bg-color);
}
#divider-body {
    /* width: 80%; */
    height: 1px;
    background-color: grey;
}
#divider-space {
    height: auto;
    width: auto;
}
#overview-divider{
    padding-top: 0%;
}
.nav-item {
    font-weight: lighter;
    font-size: 1.25rem;
  }
.active {
    font-weight: bolder;
}
/* Main components END */

/* Header & nav section START */
#header-nav-search {
    padding-top: 10px;
    padding-bottom: 10px;
}
li a:hover{
    font-weight: 400;
}
.navbar-brand {
    font-weight: lighter;
    font-size: 1.5rem;
}
/* Header & nav section END */

/* Banner section START */
#banner {
    /* display: inline-bloack; */
    background-image: url(images/Line.png);
    background-position-x: 50%;
    background-position-y: 52%;
    background-size: 40%;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
@media only screen and (max-width: 991px){
    #banner {
        padding-top: 5%;
        padding-bottom: 7%;
        background-size: 50%;
        background-position-y: 55%;
    }
}
@media only screen and (max-width: 767px) and (min-width: 576px){
    #banner {
        padding-top: 5%;
        padding-bottom: 7%;
        background-size: 60%;
        background-position-y: 55%;
    }
}
@media only screen and (max-width: 575px){
    #banner {
        padding-bottom: 10%;
        background-size: 60%;
        background-position-y: 50%;
    }
}
h1 {
    font-family: "Freehand", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    color: darkolivegreen;
    margin: auto;
}
#trees {
    max-width: 500px;
    margin-top: 15%;
    margin-left: 10%;
}
@media only screen and (max-width: 1199px) {
    #trees {
        max-width: 400px;
    }
}
@media only screen and (max-width: 991px) {
    #trees {
        display: none;
    }
}
#bird {
    max-width: 100%;
    margin-top: 33%;
    margin-bottom: 10%;
    margin-left: -20%
}  
@media only screen and (max-width: 991px) {
    #bird {
        display: none;
    }
}
/* Banner section END */

/* Overview title section START */
h2 {
    /* padding-bottom: 5px; */
    margin-top: 30px;
    font-family: "Playwrite CU", cursive;
    font-optical-sizing: auto;
    font-weight: 100;
    font-size: 40px;
    font-style: normal;
}
#overview-divider-body {
    width: 100%;
    height: 1px;
    background-color: grey;
}
#overview {
    margin-bottom: 0;
    padding-bottom: 0.25rem;
}
/* Overview title section END */

/* Cards section START */
.card-group {
    padding-top: 5%;
    padding-bottom: 40px;
}
.card {
    padding: 1em;
    height: 600px;
    background-color: var(--bg-color);
    border-top: 0px;
    border-bottom: 0px;
}
@media only screen and (max-width: 767px) {
    .card {
        margin-top: 1em;
        margin-bottom: 4em;
        height: 550px;
    }
}
@media only screen and (max-width: 575px) {
    .card {
        margin-top: 1em;
        margin-bottom: 5em;
        height: 550px;
    }
}
.card-img {
    object-fit: cover;
    width: 100%;
    height: 50%;
}
@media only screen and (max-width: 991px) {
    .card-img {
        height: 350px;
    }
}
/* Cards section END */

/* Footer section START */
footer {
    color: aliceblue;
    background-color: var(--foot-color);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  /* Footer section END */