/* Reset some default styles for consistency */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

/* Basic styles for the page */


body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
}

nav logo{
  display: flex;
  align-items: center;
	font-size: 30px;
    padding-bottom: 10px;
} 

nav logo img{
	 padding-right: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2rem;
}

.about h2, .whitepapers h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.about p {
	    margin-top: 1.5rem;
}

ul {
    list-style-type: disc;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 0.5rem;
}
