html {
    font-family: Arial, Helvetica, sans-serif;
    display:flex;
    justify-content: center;
    align-items: center;
    image-rendering: pixelated;
    min-height: 100vh;
    background-image: linear-gradient(white,whitesmoke);
    background-repeat: no-repeat;
    overscroll-behavior: none;
}
body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    height: 100%;
}
a:link {
    color:cornflowerblue;
    text-decoration: none;
}
a:visited {
    color:blue;
    text-decoration: none;
}
.websitecontainer {
    width: 90%;
    padding: 2vh 2vw;
    text-align: center;
}
.logo {
    width: 30%;
    min-width: 300px;
    max-width: 50vw;
    overflow: hidden;
    filter: drop-shadow(0px 0px 20px lightgrey);
}
.logo:hover {
    animation: dance 0.5s infinite ease-in-out;
}
.smallnav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    filter: drop-shadow(0px 0px 20px lightgrey);
    border-bottom: 5px lightgrey solid;
}
.smallnav .item {
    margin: 0 2.5%;
    width: 128px;
    max-width: 25vw;
}
.smallnav .item:hover {
    transform: scale(1.1);
}
h1 {
    font-size: 3em;
}
h2 {
    font-size: 2em;
}
p {
    font-size: 1.25em;
}
li {
    list-style-position: inside;
}
nav {
    border: 5px lightgrey solid;
    background-position: center;
    width: 100%;
    padding: 2.5% 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-image: url(bg_check.png);
}
nav .item {
    display: block;
    width: 200px;
    max-width: 50%;
    text-align: center;
    flex-shrink: 0;
}
nav img {
    border: 5px lightgrey solid;
    max-width: 100%;
    filter: drop-shadow(0px 0px 20px lightgrey);
}
nav h2 {
    margin: 2.5% 0;
}
nav img:hover {
    transform: scale(1.1);
}
.updates {
    display: block;
    text-align: center;
    max-height: 50vh;
    overflow-y: scroll;
}
.updatescontainer {
    display: block;
    border: 5px lightgrey solid;
    max-width: 75vw;
}
@keyframes dance {
  0%{transform: rotate(-1deg);}
  50%{transform: rotate(1deg);}
  100%{transform: rotate(-1deg);}
}