/* Defaults */
:root {
    --font-family: FixelText-Light, -apple-system, system-ui, sans-serif;
    --font-family-monospace: Consolas, Menlo, Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
    --text-color: #1E1E1E;
    --text-color-link: #3272A9;
    --text-color-link-active: #3272A9;
    --text-color-link-visited: #3272A9;
}

a[href] {
    color: var(--text-color-link);
    text-decoration: none;
}

a[href]:visited {
    color: var(--text-color-link-visited);
}

a[href]:hover,
a[href]:active {
    color: var(--text-color-link-active);
    text-decoration: underline;
}

/* Global stylesheet */
* {
    box-sizing: border-box;
}


@font-face {
    font-family: 'FixelDisplay-Medium';
    src: url('FixelDisplay-Medium.woff') format('woff2');
    font-weight: 500;
    /* Heavy is typically considered to be font-weight 700 */
    font-style: normal;
}

@font-face {
    font-family: 'FixelText-Regular';
    src: url('FixelText-Regular.woff') format('woff2');
    font-weight: 400;
    /* Heavy is typically considered to be font-weight 700 */
    font-style: normal;
}

@font-face {
    font-family: 'FixelText-Light';
    src: url('FixelText-Light.woff') format('woff2');
    font-weight: 300;
    /* Heavy is typically considered to be font-weight 700 */
    font-style: normal;
}





h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'FixelDisplay-Medium', var(--font-family);
    font-weight: 500;
    text-wrap: balance;
}

body,
p {
    font-family: 'FixelText-Light', var(--font-family);
    font-weight: 300;
}


h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1em;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
    max-width: 50ch;
}

body {
    font-family: var(--font-family);
    font-size: 18px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #F9ECDB;
    padding: 0px;
    margin: 0px;
    justify-content: center;
    align-items: center;
    background-image: url("../img/people5.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}

main {
    flex: 1;
    padding: 0px;
    margin: 0px;
}

header {
    padding: 0px;
    margin: 30px;
    display: flex;
    justify-content: left;
    align-items: center;
}

footer {
    display: flex;
    padding: 0px;
    margin: 0px;
    justify-content: center;
}

.footer_content {
    padding: 0px;
}

.ul_footer_links {
    display: flex;
    list-style: none;
    padding: 0px;
}

.ul_header {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.menu {
    margin-left: 40px;
}

.menu_item {
    margin: 10px;
}

.img_photo {
    border-radius: 10px;
    width: 100%;
    height: auto;
}




.crumbs ol {
    list-style-type: none;
    padding-left: 0;
    font-size: 0.8em;
}

.crumb {
    display: inline-block;
}

.crumb a {
    position: relative;
}

.crumb a::after {
    position: absolute;
    padding: 0 5px;
    color: #ffffff;
    font-size: 80%;
}



.container_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Add this line */
    align-items: center;
    /* Add this line */
}

.container_content div {
    font-size: 1.5rem;
    flex: 1 0 calc(50% - 20px);
    /* Subtract the total horizontal margin (left + right) from the flex-basis */
    box-sizing: border-box;
    padding: 20px;
    border: 2px solid #ddd2ce;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    /* Add this line */
    display: flex;
    /* Add this line */
    white-space: nowrap;
}


.container_content_avatars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Add this line */
    align-items: center;
    /* Add this line */
}

.container_content_avatars div {
    font-size: 1.5rem;
    flex: 1 0 calc(50% - 20px);
    /* Subtract the total horizontal margin (left + right) from the flex-basis */
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    margin: 5px;
    text-align: left;
    display: flex;
    /* Change this line */
    white-space: normal;
    align-items: center;
}


.container {
    display: flex;
}

.column {
    flex: 1;
    padding: 10px;
}


.compare-to {
    display: inline-block;
    /* border: 2px solid #ddd2ce; */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 2px;
    text-decoration: none;
    background-color: #efdeca;
    border-radius: 5px;
  }




/* Direct Links / Markdown Headers */
.header-anchor {
    display: none;
    text-decoration: none;
    font-style: normal;
    font-size: 1em;
    margin-left: .1em;
}

a[href].header-anchor,
a[href].header-anchor:visited {

    color: transparent;
}

a[href].header-anchor:focus,
a[href].header-anchor:hover {

    text-decoration: underline;
}

a[href].header-anchor:focus,
:hover>a[href].header-anchor {

    color: #aaa;
}

h2+.header-anchor {

    font-size: 1.5em;
}





/* Styles for mobile devices */
@media only screen and (max-width: 767px) {
    /* Add your mobile styles here */

    main,
    header,
    .footer_content {
        width: 350px;
    }

    .menu_item {
        margin: 5px;
        font-size: 0.9em;
    }

    footer {
        min-height: 350px;
    }

    header {
        flex-direction: column;
        align-items: left;
    }

    .header_logo {
        width: 70vw;
    }

    .container_content div {
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;

    }

}

/* Styles for tablets */
@media only screen and (min-width: 768px) and (max-width: 1023px) {

    main,
    header,
    .footer_content {
        width: 700px;
    }

    footer {
        min-height: 450px;
    }
}

/* Styles for desktops */
@media only screen and (min-width: 1024px) {

    main,
    header,
    .footer_content {
        width: 1000px;
    }

    footer {
        min-height: 650px;
    }
}