body{
    align-content: center;
    background: linear-gradient(150deg, lightblue, blue);
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    background-attachment: fixed;
}
main {
    align-content: center;
    align-self: center;
    background-color: white;
    margin: auto;
    max-width: 1000px;
    min-width: 200px;
    width: 90%;
    padding-bottom: 30px;
    border: 0 solid black;
    border-radius: 20px;
    box-shadow: 4px 4px 10px rgb(10, 10, 10);
}
h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    min-width: 100px;
    width: 50%;
    font-size: 4rem;
    border: black;
}
hr {
    width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
}
p {
    font-size: 20px;
    text-align: center;
}
.item {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    /*Gap is created manually here instead*/
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 30px;
    color: black;
    background-color: lightgrey;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s ease;
}
.item:hover{
    background-color: #e6e6e6;
    transform: scale(1.1);
}
.items {
    /*Flex gap is broken... how to fix? */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 2%;
}
footnote a{
    text-decoration: none;
    color: black;
    background-color: lightgrey;
    border-radius: 5px;
    padding: 2px 5px;
    display: inline-block;
    transition: transform 0.3s, background-color 0.3s ease;
}
footnote a:hover{
    background-color: #e6e6e6;
    transform: scale(1.1);
}
