@import './variables.css';
@import './fonts.css';

html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;

    background-color: var(--clr-bg);
    color: var(--clr-txt);
    font-size: var(--font-size);
    font-family: var(--font);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;

    main.main {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1 { filter: drop-shadow(var(--shdw-bg)) }
        h2 { filter: drop-shadow(var(--shdw-sm)) }
        h1, h2 { text-align: center }

        @media screen and (min-width: 1200px) {
            h1 {
                font-size: 4em;
            }
        }
    }

    footer.footer {
        font-size: 0.5em;
        text-align: center;
        opacity: 0.3;
        
        a {
            color: var(--clr-pr);
            text-decoration: none;

        }

        &:has(a:hover) {
            opacity: 0.8;
        }
    }
}