@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,400;1,700&display=swap');

body{
    font-family: 'Montserrat', sans-serif;
    margin: 0px;

}

p{
    font-weight: 400;
    font-size: large;
}

/* variable declaration in css */
:root{
    --primary-color:#6EE7B7;
    --dark-gray:#6B7280;
    --off-white:#D1FAE5;
    --blog-bg:#ECFDF5;
}

hr{
    margin: 3rem 0rem; 
}

.container{
    padding:0rem 1rem;
}

.container-center{
    max-width: 600px;
    margin: auto;
}

/* links */
.link{
 text-decoration: none;
 padding: 0.5rem 1rem;
}
.link-primary{
    background-color: var(--primary-color);
    color:white;
    border-radius: 0.5rem;
}

.link-secondary{
    color:var(--primary-color);
    border-radius: 0.5rem;
    border:1px solid var(--primary-color);
}

.link .space{
   text-align: center;
   padding: 5rem;
   margin: 5rem;
}



/* lists */
.non-bullets{
    list-style: none;
}

.list-item-inline{
    display:inline;
    padding: 0rem 0.5rem;
}

/* navigation */
.navigation{
    background-color: var(--primary-color);
    color: white;
    padding:1rem;
    border-bottom-left-radius: 1rem;
}
.navigation .link{
    color:white;
}

.navigation .nav-pills{
    text-align: right;
}

.navigation .nav-brand{
    font-weight: bold;
    font-size: 1.1rem;
}
.navigation .link-active{
    font-weight: bold;
}

/* header */
.hero{
    padding: 2rem;
    padding-top: 5rem;
}

.hero .hero-img{
    max-width: 150px;
    display: block;
    margin: auto;
}

.hero .hero-heading{
    padding: 1rem;
    color: var(--dark-gray);
    text-align: center;
}

.hero .hero-heading .heading-inverted{
    color:var(--primary-color);
}

/* section */
.section h1{
   text-align: center;
   /* max-width: 200px; */
}
.section{
    padding: 2rem;
    text-align: center;
}
.ow{
    background-color: var(--off-white);
}

.section .weight{
    font-weight: bold;
}

/*links*/
.footer{
    padding: 2rem 1rem;
    text-align: center;
    color:black;
    border-top-right-radius: 1rem;
}
.footer .footer-header{
    font-weight: bold;
    font-size: large;
}

.footer .link{
    color:black;
}
.margin{
    padding-inline-start: 0px;
} 

/* .footer{
    /* background-color: var(--primary-color); */
    /* padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    border-top-right-radius: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
} */
/* .footer-div{
font-size: large;
font-weight: bold;
} */

/* .links{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 100px;
    margin: auto;
} */ */



/**blog styling**/

.blog-weight{
    font-size:3rem;
}

/* .blog-bg{
    background-color: var(--blog-bg);
}
.footer-bg{
    background-color: var(--primary-color);
} */

.blog-img{
    max-width: 350px;
}



