:root {
    font-size: 1.2em;
}



body {
    background-color: rgb(31, 35, 39);
    background-image: url('images/DKP_8814.png');
    background-repeat: no-repeat;
    background-position: center;
    
    color:azure;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 200;
    height: 100dvh;
    margin: 0 1em;
}

main {
    background-color: #000000dd;
    border-radius: 3px;
    box-shadow: 0 0 5px #000000ee;
    color: white;
    display: inline-block;
    font-size: 1rem;
    margin: auto;
    padding: 0em;

    text-align: center;
    /* width:fit-content; */
    max-width: /*40ch*/ 35ch;

    
    :any-link {
        color:lightsteelblue;
    }

    h1 {
        font-weight: 200;
        font-size: 3rem;
        margin: 0;
        line-height: .8;
    }

    section {
        margin: .25em;
    }

    footer{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background-color: black;
        padding-block: 2px 7px;
        margin: 0;
        a:any-link {
            line-height: 100%;
            color: steelblue;
            display: block;
            font-size: x-small;
            text-decoration: none;
            margin: 0;
            padding-top: .4em;
        }
        a::first-line {
            font-size: medium;
        }
    }
}



body > footer {
    background-color: black;
    border-radius: 2px;
    display: flex;
    min-height: 2em;

    ul {
        margin:auto;
        list-style: none;
    }

    li {
        display: inline-block;
        margin-inline: 3em;
        padding: 0;
    }

    :any-link {
        color:aliceblue;
        text-decoration-color: #333;
    }
}

@keyframes snowflake-rotation {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}