html, body {
    width: 100%;
    height: 100%;
    margin: 0;

    font-family: 'Courier New', Courier, monospace;
}

.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.overhead-nav {
    position: absolute;
    z-index: 0;
    color: white;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.nav-bar {
    background-color: rgba(72, 58, 160, 0.3);
    border-radius: 10px;
    border: 2px solid;
    border-color: rgba(72, 58, 160, 0);
    width: 40%;
    padding: 10px;

    display: grid;
    grid-auto-flow: column;
    grid-auto-rows: 1fr;
}

.nav-bar a {
    width: 80%;
    justify-self: center;
}

.nav-bar button {
    padding: 10px;
    margin: 5px;
    width: 100%;

    color: white;
    background-color: #483aa0;
    border-radius: 12px;
}

.nav-bar button:hover {
    padding: 10px;
    margin: 5px;

    color: white;
    background-color: #392e81;
    border-radius: 12px;
}

.main-content {
    position: absolute;
    z-index: 0;
    color: white;
    width: 100%;
    margin-top: 150px;
    display: flex;
    justify-content: center;
}

.content-body {
    background-color: rgba(72, 58, 160, 0.3);
    border-radius: 10px;
    border: 2px solid;
    border-color: rgba(72, 58, 160, 0);
    width: 65%;
    padding: 10px;
}