/* Style sheet fixes for this blog */

[data-md-color-scheme="settlenext"] {
    --md-primary-fg-color:        rgb(00,52,124);
    --md-primary-fg-color--light: rgb(00,130,200);
    --md-primary-fg-color--dark:  rgb(00,52,124);
  }

body, input {
    font-family: "Helvetica Neue", Helvetica,Arial,sans-serif;
}

.md-typeset h1 {
    color: var(--md-primary-fg-color);
    font-weight: 400;
}

.md-typeset h2 {
    color: var(--md-primary-fg-color);
    font-weight: 400;
}


.md-header-nav__topic{
    font-size: 18pt;
}



.md-announce{
    /* https://mycolor.space/gradient */
    background-image:  linear-gradient(to right bottom, #66aae6, #68ade5, #6aafe4, #6db2e2, #70b4e1);
}




.md-announce__inner{
    /* upper banner */
    background-position: center 0;
    background-image: url('../assets/header_image.jpg');
    background-repeat:no-repeat;
    background-attachment: scroll;
    margin:auto;
    height: 180px;}

.md-typeset .md-button{
    /* needed to make this smaller */
    padding: 5px 8px;
    font-size: 12pt;
    border-radius: 3px; /* rounded button */
}

.md-footer-nav{
    /* navigation on the footer */
    max-height: 80px; }

/* 

Other elements

*/

.background-1{
    background-color: #f1f5f7;
    padding: 10px;
}

/* page-boxes */ 
.page-boxes{
    display: flex;
}

/* Box */
.box-item{
    margin: 15px;
    padding: 15px;
    /* font-size: smaller; */
    background-color: white;
    min-width: 300px;
    flex: 1 1 0px /* equal size, allow them to grow */
    /* border-style: dashed; */
}

/* Admonition (notes) text */
.md-typeset .admonition {
    font-size: .70rem;
}

/* caption for an image in a post */
.post-caption {
    font-size: smaller;
}

/* card for rich link previews */
.card {
    min-width: 200px;
    max-width: 500px;
    font-size: smaller;
    color: white;
    /* height: 350px; */
    background-color: var(--md-primary-fg-color--dark);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: -1rem 0 3rem #000;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s;
    margin: 30px;
}

.card-header {
    color: gray;
}

.card-title {
    font-size: larger;
    font-weight: bold;
}

.card p {
    display: block;
    margin: 2px 0 0 0;
}


.card img {
    float: left;
    height: auto;
    max-width: 200px;
}




.card a:link {
    color: white;
}

.card a:visited {
    color: whitesmoke;
}

.card a:hover {
    color: gray;
}