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

:root {
    --primary-color: #F87171;
    --hover-color: #f75555;
    --off-white: #E5E7EB;
    --off-white-hover: #d4d7de;
    --dark-gray: #6B7280;
}

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

hr {
    margin: 2rem 0rem;
}

/** spaces **/

.margin-md {
    margin: 2rem;
}

/** container **/
.container {
    padding: 0rem 1rem;
}

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

/** links **/
.link {
    box-sizing: border-box;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.link-primary {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    color: white;
    display: block;
    max-width: 140px;
    margin: 1rem 1rem 1rem 0rem;
}


.link-secondary {
    color: var(--primary-color);
    border-radius: 0.5rem;
    border: 1px solid var(--primary-color);
    display: block;
    max-width: 140px;
    margin: 1rem 1rem 1rem 0rem;
}

/** look into BEM naming convention for CSS **/

/** lists **/

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

.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;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.navigation .nav-brand {
    font-weight: lighter;
    font-size:larger;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

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

.navigation .link {
    color: white;
}

.navigation .link-active {
    /* font-weight:bolder; */
    text-transform: uppercase;
    /* font-style:oblique; */
    /* font-family: monospace; */
}

/** header **/

.hero {
    padding: 2rem;
    padding-top: 5rem;

}

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

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

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

/** sections **/

.section {
    padding: 2rem;
}

.section h1 {
    text-align: center;

}

.ow {
    background-color: var(--off-white);
    border-radius: 1rem;
    }

/** footers **/

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

.footer .link {
    color: white
}

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

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

/** projects **/
.showcase-list {
    padding: 2rem;
}

/** blogs **/
.showcase-blog {
    padding-bottom: 6rem;
}

/* All hover effects */

.navigation:hover{
    background-color: var(--hover-color);
    transition: 0.7s;
    
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 12px 20px 0 rgba(0, 0, 0, 0.19);
}

.navigation .nav-brand:hover{
    font-weight:bold;
    transition: 0.3s;
}

.footer:hover {
    
    background-color: var(--hover-color);
    transition: 0.7s;

  }

  /* .link:hover
{
    text-decoration:yellow;
    font-weight: bolder;
} */


.footer .link:hover {
    font-weight: bolder;
    transition: 0.2s;
    /* background-color:var(--primary-color); */
    /* border-radius: 2rem; */
}
.navigation .link:hover{
    /* font-weight:700; */
    /* text-transform: capitalize; */
    background-color:var(--primary-color);
    /* color:var(--primary-color); */
    border-radius: 0.7em;
    transition: 0.5s;

}
/* .ow:hover{
    background-color: var(--off-white-hover);
} */
.link-primary:hover {
    background-color: var(--hover-color);
    /* border-radius: 0em;
    font-weight: bold; */
    transition: 0.2s;
    transform: scale(1.1);
}
.link-secondary:hover {
    color: var(--hover-color);
    border: 1px solid var(--hover-color);
    /* border-radius: 0rem;
    /* display: block; */
    /* max-width: 140px; */
    /* margin: 1rem 1rem 1rem 0rem; */
    /* font-weight: bold; */
    transition: 0.2s;
    transform: scale(1.1);


    background-position: left bottom;

    
}

.btn-pair {
    /* border: 2px solid green; */
    display: flex;
    /* justify-content: center; */
    /* align-items: space-around; */

}
