@import url(https://fonts.bunny.net/css?family=new-tegomin:400);

:root{
    --body-font: 'Hogback Demo Version', 'New Tegomin', sans-serif;
    --heading-font: "YOZAKURA", var(--body-font);
    --black: hsl(28, 57%, 13%);
    --red: #8c090d;
}

body{
    background-image: url("./assets/bg.jpg");
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    font-family: var(--body-font);
    font-size: calc(1.1em + 0.5vmax);
    color: var(--black);
    margin: 0;
    text-shadow: 
        0.033em 0.033em hsla(28, 57%, 13%, 0.22);
    text-align: center;
}

h1, h2, h3, h4{
    font-family: var(--heading-font);
    margin: 0.25em auto;
    text-shadow: 
        0.01em 0.01em hsla(24, 38%, 97%, 0.555),
        0.033em 0.033em hsla(28, 57%, 13%, 0.22);
}

h1{
    font-size: 6.66em;
    margin: 0 auto;
    margin-bottom: -0.25em;
}

h2{
    font-size: 3.33em;
}

h3{
    font-size: 2em;
}

a{
    color: var(--red);
    text-decoration: none;
}

a:is(:hover, :focus){
    color: var(--black);
}

a, a:is(:hover, :focus){
    transition: color .3s ease;
}

#holdme{
    float: right;
    width: 77ch;
    margin-right: 3em;
    background: hsla(32, 71%, 92%, 0.44);
    padding: 1em;
    padding-top: 0;
    box-shadow: 0 0 1em 1em hsla(32, 71%, 92%, 0.44);
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin: auto;
    font-size: 1.1em;
}

main{
    margin: auto;
}

#stats{
    width: fit-content;
    margin: 1em auto;

    th{
        padding: 0 3ch;
        font-size: 1.2em;
    }
}

ul, ol{
    text-align: left;
    margin: 1em auto;
    width: fit-content;
}

footer{
    margin-top: 2em;
}

ul#members{
    list-style: none;
    padding-left: 0;
  
    li{
        margin-bottom: 1em;
  
        b{
            font-size: 1.1em;
            margin-left: -0.5ch;
            display: inline-block;
        }
    }
  
    li::before{
        content: "";
        height: 1.5em;
        width: 1.5em;
        display: inline-block;
        background-image: url("./assets/ge_linepoint.png");
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
        transform: translate(-1ch, 2ch);
        border-radius: 50%;
    }
  
    li div, li div + span{
        margin-left: 4.5ch;
    }
  
    li div{
  
        >*:not(:last-child)::after{
            content: " \2022 ";
            color: var(--black)!important;
        }
    }
  }