nav {
    display: flex;
    justify-content: flex-end;
    background-color: black;
    color: white;
    text-align: center;
}
.logo {
    font-family: VT323-Regular, monospace;
    font-size: 24px;
    color: goldenrod;
    margin-right: auto;
    padding-left: 15px;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}
nav a:hover {
    text-decoration: underline;
    color: #00ffff;
}
nav ul {
    list-style: none;
    display: flex;
}
.graveyard-header {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}
.graveyard-content {
    text-align: center;
    font-family: VT323-Regular, monospace;
    font-size: 18px;
    margin-bottom: 100px;
}
.graveyard-content textarea {
    background-color: black;
    color: white;
    font-family: VT323-Regular, monospace;
    font-size: 16px;
    border: 2px solid #00ffff;
    padding: 10px;
    resize: none;
    width: 400px;
    text-align: center;
    height: 100px;
}
footer {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    padding: 0 30px;
    box-sizing: border-box;
}
.v-left, .c-right {
    text-align: left;
}
.v-left a, .c-right a {
    color: pink;
    text-decoration: none;
}
.v-left a:hover, .c-right a:hover {
    text-decoration: underline;
    color: #00ffff;
}