:root {
    --bg-colour: hsla(45, 29%, 87, 40%);
    --fg-colour: hsl(180, 4%, 89%);
    --accent: #9067A9;
    --focus-colour: black;
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background-color: var(--bg-colour);
    font-family: Calibri, sans-serif;
    padding-top: 1em;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;

}

a:focus {
    outline: solid 0.25em var(--focus-colour);
    border-radius: 5px;
    width: 100%;
}

h1 {
    font-weight: 700;
    align-self: center;
    padding-bottom: 1em;
    padding-top: 1em;
    font-size: 3.5em;
    /* color: var(--accent); */
}

ul {
    list-style-type: none;
    align-self: center;
    width: 70%;
    min-width: 350px;
    max-width: 1500px;
    /* margin-bottom: 20em; */
}

li {
    border: 1px solid var(--accent);
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
    background-color: var(--fg-colour);
    margin-bottom: 1em;
    transition: all 0.1s ease-out;
}

li>a {
    text-decoration: none;
    display: inline-block;
    padding: 1em;
    color: black;
}

li:hover {
    filter: invert(0.7);
    transform: scale(1.01);
    border: 1px solid red;
}

svg {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    height: max(10em);
}


p.app-title {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

p.app-desc {
    font-weight: 400;
    font-size: 0.75em;
    font-style: italic;
}

body>p {
    align-self: center;
    margin-bottom: 1em;
}

/* info box styling */
body > ul > li:nth-child(1){
    padding: 1em;
    font-size: 1em;
}

body > ul > li:nth-child(1):hover{
    transform: none;
    filter: none;
    border: 1px solid var(--accent);
    cursor: auto;
}

#last-updated {
    font-style: italic;
    font-size: 0.75em;
    text-align: right;
}
