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


:root{
    --primary-color: #f97316;
    --off-white: #f3f3f3;
    --zinc-gray: #27272a;
    --text-shadow: #ca7506;
}

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
}

hr{
    margin: 2rem 0;
}

.technology{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.technology > img{
    width: 5rem;
    padding: 0.5rem;
}

/* project page */
.project{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.project-link{
    margin-right: 1rem;
    margin-top: 1rem;
}
.project-container{
    padding: 1rem;
}

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

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

.container p a{
    color: var(--primary-color);
}
/* links */
.link{
    text-decoration: none;
}
.link-primary{
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    color: white;
    padding: 0.5rem 1rem;
}
.link-secondary{
    color: var(--primary-color);
    border-radius: 0.5rem;
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
}
.link-secondary:hover{
    background-color: var(--primary-color);
    color: var(--off-white);
}

/* lists */
.list-non-bullet{
    list-style: none;
}
.list-item-inline{
    display: inline;
    padding: 0 0.5rem;
}

/* navigation */
.navigation{
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border-bottom-left-radius: 1rem;
}
.navigation .nav-brand{
    font-weight: bold;
    font-size: 2rem;
    text-shadow: 2px 2px 1px var(--text-shadow);
}
.nav-pills{
    text-align: right;
}
.navigation .link{
    color: white;
    align-self: flex-end;
}
.navigation .link-active{
    font-weight: bold;
    border-bottom: 2px groove white;
}

/* header  */
.hero{
    padding: 4rem 0;
}
.hero .hero-img{
    max-width: 350px;
    display: block;
    margin: auto;
}
.hero .hero-heading{
    text-align: center;
    padding-top: 1rem;
    color: var(--zinc-gray);
}
.hero .hero-heading-inverted{
    color: var(--primary-color);
}

@media only screen and (max-width: 600px){
    .hero .hero-img{
        width: 10rem;
    }

    .footer-p{
        font-size: small;
    }
}

/* sections  */
.section{
    padding: 1rem;
}
.section h1{
    text-align: center;
}
.ow{
    background-color: var(--off-white);
}

/* footer  */
.footer{
    background-color: var(--primary-color);
    padding: 1rem;
    text-align: center;
    color: white;
    border-top-right-radius: 1rem;
    margin-top: 5rem;
}
.footer .link{
    color: white;
}
.footer ul{
    padding-inline-start: 0;
}
.footer-header{
    font-weight: bold;
    font-size: large;
}
.footer-img{
    width: 2rem;
}

/* card  */
.card-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 60rem;
    margin: auto;
}
.card{
    width: 20rem;
    border-radius: 10px;
    box-shadow: 1px 2px 8px var(--primary-color);
    margin: auto;
    min-height: 16rem;
    margin-bottom: 5rem;
    min-width: 25rem;
}

@media only screen and (max-width: 600px){
    .card{
        width: 10rem;
        min-width: 18rem;
    }

    .card-flex{
        display: flex;
        flex-direction: column;
        width: initial;

    }
}