<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Protect Our Planet | Earth Day</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
body {
line-height: 1.6;
color: #ffffff;
}
/* Clean large color blocks */
.hero {
background-color: #2E7D32; /* Deep green */
padding: 80px 20px;
text-align: center;
}
.mission {
background-color: #81C784; /* Light green */
padding: 60px 20px;
color: #1B5E20;
}
.actions {
background-color: #4CAF50; /* Medium green */
padding: 60px 20px;
}
.pledge {
background-color: #1B5E20; /* Darkest green */
padding: 70px 20px;
text-align: center;
}
footer {
background-color: #0D310F;
padding: 30px 20px;
text-align: center;
font-size: 0.9rem;
}
/* Typography */
h1 {
font-size: 3rem;
margin-bottom: 20px;
font-weight: 700;
}
h2 {
font-size: 2rem;
margin-bottom: 25px;
text-align: center;
font-weight: 600;
}
p {
font-size: 1.15rem;
max-width: 800px;
margin: 0 auto 20px;
}
ul {
max-width: 800px;
margin: 0 auto;
list-style-position: inside;
font-size: 1.15rem;
}
li {
margin: 12px 0;
}
.btn {
display: inline-block;
margin-top: 25px;
padding: 14px 32px;
background-color: white;
color: #2E7D32;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: 0.3s;
}
.btn:hover {
background-color: #f0f0f0;
transform: scale(1.03);
}
</style>
</head>
<body>
<!-- Hero Block -->
<section class="hero">
<h1>PROTECT OUR EARTH. PROTECT OUR FUTURE.</h1>
<p>Every action we take today shapes the health of our planet for generations to come. The Earth is not just a home — it’s our responsibility.</p>
<a href="#takeaction" class="btn">Take Action Now</a>
</section>
<!-- Mission Block -->
<section class="mission">
<h2>Our Mission</h2>
<p>We advocate for sustainable living, conservation of natural resources, reduction of waste, and the protection of ecosystems worldwide. Small, consistent choices create global change.</p>
<p>Preserving forests, oceans, and wildlife is essential to maintaining balance in Earth’s delicate systems. We must act with purpose and urgency.</p>
</section>
<!-- Action Block -->
<section class="actions" id="takeaction">
<h2>How You Can Help</h2>
<ul>
<li>Reduce single-use plastics and choose reusable products</li>
<li>Save energy by using renewable power and efficient appliances</li>
<li>Conserve water and reduce unnecessary consumption</li>
<li>Plant trees and support local environmental initiatives</li>
<li>Recycle properly and minimize landfill waste</li>
<li>Educate others about climate action and sustainability</li>
</ul>
</section>
<!-- Pledge Block -->
<section class="pledge">
<h2>Make Your Pledge</h2>
<p>I promise to care for the Earth, make eco-friendly choices, and stand for environmental justice.</p>
<p>One planet. One chance. Let’s protect it together.</p>
</section>
<!-- Footer -->
<footer>
© 2026 Protect Our Planet | Together for a Sustainable Earth
</footer>
</body>
</html>