:root {
    --primary-blue: #234e70;
    --secondary-blue: #3e71a4;
    --accent-yellow: #dfd3ad;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.6);
    --base-foundation: #e7e2cd;
    --base-foundation-50: #eeece4;
    --base-dark: #b5a87e;
}

body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    background-color: var(--base-foundation);
}

.card-footer, .bg-base-dark{
    background-color: var(--base-dark);
    font-size: larger;
}

.border-base-dark {
    border-color: var(--base-dark);
    background-color: var(--base-foundation-50);
}

img#logo {
    height: 3.8em;
    margin-top: -18px;
    margin-right: 20px;
}


h1,
h2,
h3,
h4 {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

div#navbar {
    padding: 20px 5px;
    background-color: var(--base-foundation);
    transition: padding 0.3s;
    overflow: hidden;
    box-shadow: #878787 0px 0px 10px 0px;
}


#logo,
#navbar-toggler-btn,
.nav-link {
    transition: 0.64s;
}

.navbar-shrink {
    /* background-color: red; */
}



div.nav-link {
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    color: #131313;
}

div#logotext {
    font-size: 3vw;
}

.intro-text
 {
    padding: 20px;
    margin: 0;
    background-color: white;
    border-radius: 5px;
    /* max-width: 1200px;  */
}

#frontpageheader {
    padding: 15px;
    margin: 0px;
}

section#storyline {
    padding: 15px 0px;
}

section#pages {
    padding: 15px 0px;
}

h4.card-title>a {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration-line: none;
    color: #454545;
}

button.navbar-toggler {
    /* background-color: var(--base-foundation); */
    /* border: none; */
    /* color: var(--text-white); */
    font-size: 1.7rem;
    margin-left: 15px;
    position: absolute;
    right: 15px;
    top: 30px;

    &:hover {
        color: var(--text-white);
    }
}

@media screen and (min-width: 1170px) {
    .navbar {
        padding: 20px 5px;
        transition: padding 0.3s;

        &.navbar-shrink {
            padding: 10px 0;
        }
    }

    div#logotext {
        font-size: 3vw;
        text-wrap: wrap;
    }

}

@media screen and (max-width: 992px) {
    div#logotext {
        /* color: red; */
    }

    /*font-size: 1.2em;*/
}

}

@media screen and (max-width: 540px) {
    div#logotext {
        /* color: rgb(255, 0, 221); */
        text-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    div#logotext {
        /* color: rgb(0, 255, 42); */
        text-wrap: wrap;
    }
    /* div.navbar-shrink .navbar-toggler {
        position: absolute;
        right: 10px;
        top: 10px;
    } */
}




.navbar {
    a {
        color: #4d4d4d;
        /*text-transform: uppercase;*/
        text-decoration: none;
        /*line-height: 42px;*/
        /*font-weight: 700;*/
        /*font-size: 20px;*/

        &.brand {
            >img {
                max-width: 70px;
            }
        }

        &.active {
            color: #0b2c7b;
        }
    }
}

.content {
    position: absolute;
    width: 100%;
    height: 100%;

    >section {
        width: 100%;
        height: 100%;
    }
}

#portfolio {
    background: #2dbccb;
}

#about {
    background-color: #eb7e7f;
}

#contact {
    background-color: #415c71;
}