* {
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    width: 50%;
    height: auto;
    margin: 1em auto;
    background-color: whitesmoke;
    color: black;
}

h1 {
    font-size: 50px;
}

nav {
    font-size: 28px;
}

nav ul {
    list-style: none;
    margin-top: 1em;
    margin-bottom: 1em;
}

nav li {
    display: inline-block;
    margin: 0.5em 0em 0.5em;
}

nav a {
    color: black;
    text-decoration: none;
    padding: 0.5em;
}

nav a:hover {
    color: #e61b00ff;
    background-color: #e61b0022;
    border-radius: 0.9em;
}