body {
    font-family: Verdana, sans-serif;
    margin: 40px;
    background-color: #f5f5f5;
}
#navLinksHeader {
	margin-top: -18px;
	margin-bottom: 32px;
	display: flex;
	justify-content: center;
}
/*
Main page styling for text,
centre title and main page boxes to look uniformed
much better centred than aligned to right
*/
h1,
h3 {
    text-align: center;
    color: #333;
    font-size: 28px;
}
p {
    text-align: center;
    font-size: 14px;
}
/*
input text area for the logitude and latitude#
the text color is red to match results heading
to make the colorway i am going for is black, grey, white and red
*/
#longLatInputArea {
    width: 450px;
    margin: auto;
    background-color: white;
    padding: 25px;
    border: 2px solid #ccc;
    border-radius: 5px;
}
input {
    padding: 8px;
    width: 150px;
    margin-left: 10px;
    font-family: Verdana, sans-serif;
    color: red;
}
/*
this is the table section,
margin is 32px and padding is 15px for space
did a slight darker than white for borders
to make the table stand out more
*/
table {
    width: 90%;
    margin: 32px auto;
    max-width: 80em;
    border-collapse: collapse;
    background-color: white;
}
th {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
}
td {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}
button {
    padding: 10px 18px;
    background-color: #444;
    color: white;
    border: none;
    cursor: pointer;
    font-family: Verdana, sans-serif;
    border-radius: 10px;
}
button:hover {
    background-color: #ff4f4f;
}
/*
this is the result section where
when buttons are clicked it will result it down here
I made the result heading red for contrast
and left the actual results text black
*/
h4 {
    text-align: center;
    font-size: 20px;
    color: rgb(107, 0, 0);
    text-decoration: underline;
}
#results {
    width: 80%;
    max-width: 80em;
    min-height: 150px;
    margin: auto;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/*
End of page copy right text
*/
#EndOfPageCopyRights {
    margin-top: 50px;
    color: rgb(107, 0, 0);
}