body{
    font-family: "Patrick Hand", sans-serif;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgb(179, 179, 179), 1px, transparent 1px), linear-gradient(to bottom, rgb(179, 179, 179), 1px, transparent 1px);
    animation: moveGrid 3s linear infinite;
}

@keyframes moveGrid{
    from{
        background-position: 0 0;
    }
    to{
        background-position: 40px 40px;
    }
}

.pages{
    position: fixed;

    background-color: rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin-left: -30px;
    border-radius: 0px 50px 50px 0px;
    z-index: 10;
    backdrop-filter: blur(8px);

    z-index: 500;
}

.pages ul{
    list-style-type: none;
    margin: auto;
    overflow: hidden;
    justify-content: center;
}

.pages a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-shadow: 0 10px 5px rgb(0, 0, 0);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    font-size: 20px;
    transition: text-shadow 0.3s ease-in-out;

    display: block;
    text-align: center;
    padding: 15px;
}

.pages li{
    float: left;
}

.pages a:hover{
    text-shadow: 0 0 5px rgb(51, 51, 51), 0 0 10px rgb(40, 40, 40), 0 0 10px rgb(153, 153, 153), 0 0 10px rgb(142, 142, 142);
}

.pages .hometext{
    font-family: "FreakyPaperCutouts";
    font-size: 20px;
    color: rgb(0, 191, 255);
    text-shadow: 1px 2px 5px rgb(33, 32, 51);
}

.pages .hometext:hover{
    text-shadow: 0 0 5px rgb(3, 0, 96), 0 0 10px rgb(0, 28, 131), 0 0 10px rgb(0, 83, 177), 0 0 10px rgb(0, 149, 255);
}

#header{
    padding: 50px;
}

p{
    padding-top: 100px;

    width: 500px;
    margin: auto;

    font-size: 25px;
    text-align: center;
}

.sources ul{
    padding: 100px;

    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.sources li{
    list-style-type: none;

    font-size: 30px;

    padding: 20px;
}