html{
    display: flex;
}

body{
    margin: 0;
    font-family: Karla, sans-serif;
    display: grid;
    height: 100dvh;
    max-height: 100dvh;
    background-color: var(--accent-color);
    grid-template-rows: 1fr min-content 1fr;
    color:white;
    flex-grow: 1;

    &::before{
        content: attr(date);
        font-weight: bold;
        opacity: .4;
        font-size: 5rem;
        align-self:end;
        text-transform: uppercase;
        filter: drop-shadow(0 0 1rem black);
        margin-left: 1.25rem;
    }
}

main{
    padding: 1.5rem 0 1.5rem 0;
    display: grid;
    grid-row: 2;
    grid-template-rows: 1fr auto 1fr;
    grid-gap: 1.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.5);
}

body>footer{
    grid-row: 3;
    display:grid;
    grid-template-rows: auto 2rem;

    #links{
        color: rgba(0, 0, 0, 0.7);
        grid-row: 2;
        display:flex;
        flex-direction: row-reverse;
        align-items: center;

        a{
            padding-right: 1rem;
        }
    }
}

h1 {
    opacity: 0.8;
    margin: 0;
}

h2 {
    font-size: 5rem;
    margin: 0;
}

h3 {
    font-style: italic;
    font-size: 1.5rem;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}