:root {
    --black: hsl(10, 100%, 0%);
    --dark-red: hsl(10, 90%, 15%);
    --bloom: hsl(10, 55%, 50%);
    --off-white: hsl(10, 15%, 85%);
    --boss-fonts: 'Georgia', serif;
    --minion-fonts: 'Tahoma', sans-serif;
}



html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

html {
    color: var(--off-white);
    font-family: var(--minion-fonts);
}

body {
    display: flex;
    flex-direction: column;
}

body>* {
    padding: 2rem;
}

header {
    text-shadow: 0rem 0rem .5rem var(--bloom);
    background-color: var(--black);
    text-align: right;
}

main {
    flex: 1;
    background-image: linear-gradient(to bottom, var(--black), var(--dark-red));
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer {
    text-shadow: 0rem 0rem .5rem var(--bloom);
    background-color: var(--dark-red);
    text-align: right;
}

h1,
h2 {
    font-family: var(--boss-fonts);
}

ul {
    display: grid;
    grid-template-columns: auto;
}

ul li:hover {
    transition-timing-function: ease-in;
    transition: text-shadow 6s;
}

section {
    border-style: dotted dotted;
    padding: 1rem;
}

.material-icons {
    height: fit-content;
    vertical-align: text-bottom;
    font-size: 1rem !important;
}

/* Top Right Bottom Left */
/* Content Padding Border Margin */
/* One boss font, others that contrast */
/* Link, visited, active, hover */

/* img {
    width: 50%;
    height: 50%;
    max-width: 400px;
    margin: auto
} */

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* On screens that are 600px wide or less, make the menu links stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}