nav {
    display: flex;
    align-items: center; /* Keeps everything vertically centered */
    justify-content: center; /* Centers the navigation links */
    position: relative; /* Allows us to pin the logo to the left */
}

.navimg {
    position: absolute; /* Pins the logo to the left side */
    left: 0;
}
.navbutton1{
    position: absolute; /* Pins the logo to the left side */
    right: 0;
}
.navbutton2{
    position: absolute; /* Pins the logo to the left side */
    right: 0;
}
body{
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 20px;
    background: linear-gradient(to bottom, black, rgb(20, 0, 0));
    background-attachment: fixed;
    color: white;
}
button{
    border-radius: 10px;
    border-color: black;
    border-style: inset;
}
button{
    background-color: black;
    color: white;
    border-color: white;
    border-style: groove;
}
a{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    display: flexbox;
    text-decoration: bold;
}
.nav{
    margin: 10px;
}
.navimg{
    text-align: right;
    margin-right: 20px;
}
h1{
    font-family: 'Courier New', Courier, monospace;
}
h2{
    font-family: Arial, Helvetica, sans-serifs;
}
p{
    font-family: Arial, Helvetica, sans-serif;
}