/* menu */
h1 {
    box-sizing: border-box;
    margin: 2px;
    padding: 2px;
    text-align: center;
}

nav ul li {
    display: inline-block;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333;
    border-radius: 15px;
    overflow: hidden;
}

nav ul li a {
    color: white;
    display: block;
    padding: 14px 16px;
    /* padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 16px;
    padding-right: 16px; */
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #494848;
}

nav {
    margin-bottom: 20px;
}

/* titles */
h2 {
    font-size: 24px;
    text-align: center;
}

/* body text */
body {
    font-family: Arial, sans-serif;
    text-indent: 30px;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
}

/* footer */
footer {
    background-color: #333;
    border-radius: 15px;
    margin-top: auto;
    margin-bottom: 7px;
    padding: 14px 16px;
    text-align: center;
    overflow: hidden;
}

footer a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 5px 6px;
    border-radius: 10px;
}

footer a:hover {
    background-color: #494848;
}

/* makes my footer stay at bottom of the webpage */
html,
body {
    height: 100%;
}
