@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');


/** psuedo class for custom property/variable **/
:root{
    --primary-color: #fb7185;
    --stone-color: #78716c;
    --off-white: #f3f4f6;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    /**padding: 0rem 7rem;**/
}

hr {
    margin: 2rem 0rem;
}

/** small tag is an inline element so first display it as block and then align text center**/
small{
    display: block;
    text-align: center;
}

.highlight-keyword{
    color: var(--primary-color);
}

.container{
    padding-left: 1rem;
    padding-right: 1rem;
}

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

}
.container-projects{
    max-width: 800px;
    margin: auto;

}

.project-link{
    /*padding-left: 15rem; */
    /**text-align: center; */
}
/** links **/
.link {
    box-sizing: border-box;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.link-primary {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    color: white;

}

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

/** lists **/
.list-non-bullet {
    list-style: none;
    padding-inline-start: 0px;
}

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

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

.navigation .link{
    color: white;
    
}

.nav-pills {
    text-align: end;
}

.nav-brand{
    font-weight: bold;
    font-size: 1.2rem;
}

.navigation .link-active {
    font-weight: bold;
}

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

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

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

/* section */
.section {
    padding: 2rem;
}

.section h1{
    text-align: center;
}

.date{
    text-align: center;
}
.ow {
    background-color: var(--off-white);

}

/* footer */
.footer{
    background-color: var(--primary-color) ;
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    border-top-right-radius:1rem ;
    margin-top: 3rem;
}

.footer .link{
    color: white;
}

.footer ul{
    padding-inline-start: 0px;
}

.footer .footer-header {
    font-weight: bold;
    font-size: large;
}