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

:root {
    --primary-color: #ff9900;
    --secondary-color: red;
    --dark-gray: rgb(68, 63, 63);
    --offwhite: rgba(206, 194, 194, 0.418);
    --textgray: #374151;
}

body {
    color: var(--textgray);
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin: 0px;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.diagonalBox {
    background: rgb(212, 12, 12);
    background: linear-gradient(298deg, rgb(250, 137, 8) 0%, rgba(245, 88, 88, 1) 100%, rgb(253, 130, 29) 0%);
    padding: 10px 0;
    position: relative;
    border-bottom-left-radius: 1.5rem;
}

.nav-brand {

    font-weight: bold;
    /* font-family: 'Anton', sans-serif; */
    font-size: rem;
    padding-left: 20px;
    padding-top: -50px
}

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

}

.container {
    /* padding-left: 1rem;
    padding-right: 1rem; */
    padding: 0rem 1rem;
    /* (in this 1rem is both for left aswellas right) */
}

.container-otherwise {
    max-width: 1000px;
    margin: auto;

}


/* links */
.link {
    color: lightseagreen;
    box-sizing: border-box;
    text-decoration: none;
    padding: 0.5rem 0.5rem;
    /* top right bottom left */
}

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

.link-primary {
    background-color: #F86639;
    border-radius: 0.5rem;
    color: bisque;
    max-width: 160px;
    margin: 1rem 1rem 1rem 0rem;
}

.link-secondary {
    color: #F86639;
    border-radius: 0.5rem;
    border: 1px solid #F86639;
    max-width: 160px;
    margin: 1rem 1rem 1rem 0rem;

}

/* lists */

.list-non-bullet {
    list-style: none;
    /* text-align: right; */
}


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

/* nav is tricky */

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



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

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

/* header */

.hero {
    padding: 1.2rem;

}

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

.hero .hero-heading {

    text-align: center;
    font-size: 2rem;
    color: black;
}

.hero .hero-heading .heading-inverted {
    color: #ffd900;
}

.hero .hero-heading .heading-zero {
    font-size: large;
    color: rgba(255, 51, 0, 0.692);
    /* background: linear-gradient(298deg, rgba(131, 58, 180, 1) 0%, rgba(253, 247, 29, 1) 0%, rgba(245, 78, 88, 1) 80%); */
    ;
}

/* sections */

.section {
    padding: 2rem;
}

.ow {
    background-color: var(--offwhite);

}

.section h2 {
    font-size: 2rem;
    text-align: center;
}

.section-pirate{
    background-image: url(/lib/images/favicon_3.ico);
    background-position: center;
    
}

/* footer */

.footer {
    background: rgb(131, 58, 180);
    background: linear-gradient(298deg, rgba(131, 58, 180, 1) 0%, rgb(253, 130, 29) 0%, rgba(245, 88, 88, 1) 100%);
    padding: 2rem 0rem;
    text-align: center;
    color: white;
    border-top-right-radius: 1rem;
}

.footer .link {
    color: white
}

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

/* here is the part of second page: Projects */
.project-title {
    text-align: center;
}

.article-border {
    padding: 2rem;
}


