body    {
    background-color: black;
    color: white;
    font-family: "Arial", Helvetica, sans-serif;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-top: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

a:link, a:visited {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    margin-right: 20px;
}

a:hover, a:active {
    color: yellow;
}