:root {
    --base-font-size: 16px;
    --head-font-size-h1: clamp(3vw, 12vw, 10rem);
    --head-font-size-h2: clamp(2vw, 8vw, 4rem);
    --head-font-size-h3: clamp(1em, 6vw, 2.75rem);
    --head-font-size-h4: clamp(1em, 4vw, 1.5rem);
    --head-font-size-h5: clamp(1em, 2vw, 1.125rem);
    --head-font-size-h6: clamp(1em, 1vw, 1rem);
    --head-font-family: "Inter", Helvetica, Arial, sans-serif;
    --base-font-family: "Fira Code", "Lucida Console", monospace;
    --base-font-family: "Inter", Helvetica, Arial, sans-serif;
    --base-color: rgb(204, 255, 0);
    --base-color: rgb(0, 255, 204);
}

body {
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    line-height: 1.5em;
    padding: 1rem;
}

header {
    padding: clamp(1vh, 20vh, 10vw) 0;
}

footer {
    padding: clamp(1vh, 20vh, 10vw) 0;
    text-align: center;
}

main {
    font-size: clamp(var(--base-font-size), calc(var(--base-font-size) + 0.2vw), 20pt);
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 80rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--head-font-family);
}

h1 {
    /*
    background-image: url('header.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    */
    /*
    background: linear-gradient(90deg, #f5f5f5 0%, #f5f5f5 50%, #fff 50%, #fff 100%) no-repeat;
    */
    color: transparent;
    font-size: var(--head-font-size-h1);
    font-weight: 900;
    line-height: calc(var(--head-font-size-h1) * 0.8);
    margin: auto;
    max-width: 100rem;
    text-align: right;
    /*text-shadow: clamp(0rem, 0.5vw, 0.5rem) clamp(0rem, 0.5vw, 0.5rem) 0 rgba(0, 255, 204, 0.75);*/
    text-shadow: 0.075ch 0.075ch 0 rgba(0, 255, 204, 0.75);
    text-transform: uppercase;
    word-wrap: break-word;
    -webkit-text-stroke: 0.025ch rgb(0, 51, 51);
}

h2 {
    color: transparent;
    font-size: var(--head-font-size-h2);
    font-weight: 900;
/*    line-height: calc(var(--head-font-size-h2) * 0.9);*/
    line-height: 1.25em;
    text-shadow: 0.075ch 0.075ch 0 rgba(0, 255, 204, 0.75);
    text-transform: uppercase;
    word-wrap: break-word;
    -webkit-text-stroke: 0.075rem rgb(0, 51, 51);
    -webkit-text-stroke: 0.025ch rgb(0, 51, 51);
}

h3 {
    font-size: var(--head-font-size-h3)
}

h4 {
    font-size: var(--head-font-size-h4)
}

h5 {
    font-size: var(--head-font-size-h5)
}

h6 {
    font-size: var(--head-font-size-h6)
}

a:not([name]) {
    /*
    background: linear-gradient(transparent 0%, transparent 65%, rgb(204,230,0) 65%, rgb(204,230,0) 100%) no-repeat;
    */
    box-shadow: inset 0 -0.25ch 0 0 rgba(0, 255, 204, 1);
    color: inherit;
    text-decoration: none;
    transition: all ease-in 0.125s;
}

a:focus:not([name]),
a:hover:not([name]) {
    /*
    background: linear-gradient(transparent 0%, transparent 0%, rgb(204,230,0) 0%, rgb(204,230,0) 100%) no-repeat;
    */
    box-shadow: inset 0 -2ch 0 0 rgba(0, 255, 204, .5);
}

dl {
    padding: 1rem;
}

dt {
    font-weight: bolder;
}

dd {
    margin-bottom: 1rem;
}

/*
.classes
*/

figure.tiles {
    align-items: center;
    column-gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 1rem 0;
    padding: 0;
    row-gap: 1rem;
}

figure.titles img {
    display: inline-block;
    object-fit:cover;
}

figure {
    max-width: 100%;    
}

figure img {
    max-width: 100%;
}

.atty::before {
    content: "@";
    display: inline-block;
}

.dotty::before {
    content: ".";
    display: inline-block;
}