img {
	max-width: 100%;
}
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 1em;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 5em 1em;
}

.whitepaper, .about, .contact {
    padding: 2em 1em;
    text-align: center;
}

.whitepaper a {
    color: #f0f0f0;
    background-color: #007BFF;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    background-color: #333;
    text-align: center;
    padding: 1em;
}

.hero h1, .whitepaper h2, .about h2, .contact h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.hero p, .whitepaper p, .about p, .contact p {
    font-size: 1.2em;
}

.hero p::after {
    content: "whisper... whisper...";
    display: block;
    font-style: italic;
    color: #ff0000;
    margin-top: 1em;
}
