/* Reset and Base Styles */

/* :root{ */
/*     --base-color: #fffff; */
/*     --base-variant: #e8e9ed; */
/*     --text-color: #111528; */
/*     --secondary-text: #232738; */
/*     --primary-color: #3a435d; */
/*     --accent-color: #0071ff; */
/* } */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inclusive Sans", sans-serif;
    padding: 0 max(3%, calc(0.25rem * 8)) 0 max(3%, calc(0.25rem * 8));
    background-color: #fff8f2;
    /* font-family: "Martian Mono", monospace; */
    /* font-optical-sizing: auto; */
    /* font-weight: 200; */
    /* font-style: normal; */
    /* font-variation-settings: */
    /*     "wdth" 75; */
    /* /\* line-height: 1.6; *\/ */
    /* color: #3D3D3D; */
}

header {
    height: calc(0.25rem * 16);
    align-items: center;
    display: flex;
    margin-inline: auto;
}

/* main {} */

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: calc(0.25rem * 6);
    padding-bottom: calc(0.25rem * 8);
    gap: calc(0.25rem * 8);
}

section {
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #3D3D3D;
    margin-bottom: 3rem;
}

section p {
    line-height: 2.0;
}

.container {
    max-width: 40rem;
    margin-inline: auto;
}

.grouped {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.subtitle {
    text-transform: uppercase;
    color: #9F9FA9;
    font-weight: 400;
    font-size: 1.135rem;
}

.pill-group {
    display: inline-flex;
    flex-flow: row wrap;
    gap: 0.8rem;
    font-size: 1.25rem;
    margin-top: calc(0.25rem * 2);
}

.pill {
    display: inline-block;
    padding-inline: calc(0.25rem * 3.5);
    border-radius: 1.375rem;
    background-color: rgba(88, 196, 220, 0.1);
}

.small {
    position: relative;
    top: -0.125rem;
    left: 0.25rem;
    font-size: 0.95rem;
    padding-inline: calc(0.25rem * 2.5);
}

.active {
    color: #0A620A;
    background-color: rgba(83, 213, 72, 0.25);
}

.stealth {
    color: #606060;
    background-color: rgba(38, 38, 38, 0.25);
}

.past {
    color: #B75E00;
    background-color: rgba(255, 143, 0, 0.25);
}

.billet-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: calc(0.25rem * 2);
}

.billet {
    display: inline-block;
    border: #ADADAD solid 1px;
    border-radius: 0.5rem;
    padding: 0.8rem;
}

.billet p {
    margin-top: calc(0.25rem * 3);
    font-size: calc(0.25rem * 4.5);
    line-height: 1.25rem;
    font-weight: 300;
}

.billet img {
    position: relative;
    top: 0.6rem;
    width: 1.75rem;
    height: 1.75rem;
    /* border: #BDBDBD solid 0.15rem; */
    margin: 0.25rem;
    border-radius: 0.5rem;
    /* box-shadow: 0.05rem 0.05rem 0.1rem #CDCDCD; */
}

.billet a.linked {
    text-decoration: none;
    color: inherit;
}

.billet:has(a.linked) {
    cursor: pointer;
    background-color: #EEEEEE;
}

.billet:has(a.linked):hover {
    background-color: #EAEAEA;
    transform: scale(1.02, 1.02);
    transition: ease 0.2s;
}

.article-group {
    display: flex;
    gap: 0.8rem;
    flex-flow: row wrap;
    margin-top: calc(0.25rem * 2);
}

.article {
    display: inline-block;
    padding: 0.5rem;
    padding-inline: calc(0.25rem * 5);
    border-radius: 1.375rem;
    background-color: rgba(88, 196, 220, 0.1);
}

.article a {
    text-decoration: none;
    color:#3F3FB9;
}


.article a:visited {
    color: #3F3F93;
}

/* #intro {} */

#greeting {
    /* font-family: "Martian Mono", monospace; */
    font-family: "Inclusive Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 32px;
    margin-bottom: calc(0.25rem * 4)
}

#name {
    font-family: "Permanent Marker", cursive;
    /* font-weight: 400; */
    /* font-style: normal; */
    font-size: 32px;
    color:#FF2F51;
    position: relative;
}

#name::before {
    content:"";
    position: absolute;
    left: 25%;
    bottom: 12px;
    width: 200px;
    height: 16px;
    transform: skew(-12deg) translateX(-50%);
    background: rgba(255,174,70,0.25);
    z-index: -1;
}

#contact a, #contact a:visited {
    color: #3D3D3D;
    text-decoration-color: #FF2F51;
        /* #3F3FB9; */
                           /* #FCA311; */
    text-decoration-thickness: calc(0.25rem * 0.5);
}

#email {
    position: relative;
}

#email::before {
    content:"";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 220px;
    height: 16px;
    transform: skew(-12deg) translateX(-50%);
    background: rgba(255,174,70,0.25);
    z-index: -1;
}

#contact svg {
    position: relative;
    top: 6.5px;
    margin-right: 0.25rem;
}

#contact li {
    padding-inline: calc(0.25rem * 5);
}

#contact .pill > a {
    text-decoration: none;
    color: #3D3D3D;
}

/* .only-on-dark { */
/*     display:none; */
/* } */

/* @media (prefers-color-scheme: dark) { */
/*     .only-on-dark { */
/*         display: inherit; */
/*     } */

/*     .only-on-light { */
/*         display: none; */
/*     } */
/* } */
