<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Read With Your Ears! ๐ง</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap" rel="stylesheet">
<style>
/* CSS Reset & Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
/* A vibrant, energetic gradient background */
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
/* Container for the main content */
.container {
max-width: 800px;
background: rgba(255, 255, 255, 0.1);
padding: 3rem;
border-radius: 20px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
/* Catchy Typography */
h1 {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 1rem;
text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
line-height: 1.2;
}
.highlight {
color: #ffd700; /* Gold/Yellow text for emphasis */
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
line-height: 1.6;
color: #e2e8f0;
}
.perks {
list-style: none;
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}
.perks li {
background: rgba(0, 0, 0, 0.2);
padding: 0.8rem 1.5rem;
border-radius: 50px;
font-weight: 700;
font-size: 1rem;
letter-spacing: 1px;
}
/* Button Styles */
.button-container {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
}
@media (min-width: 600px) {
.button-container {
flex-direction: row;
justify-content: center;
}
}
.btn {
display: inline-block;
padding: 1rem 2rem;
font-size: 1.1rem;
font-weight: 700;
text-decoration: none;
color: white;
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
width: 100%;
max-width: 250px;
}
/* Hover animation for buttons */
.btn:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
/* Brand-specific button colors */
.btn-audible {
background-color: #F5A623;
color: #111;
}
.btn-google {
background-color: #4285F4;
}
.btn-libby {
background-color: #77315C;
}
/* Footer text */
.footer {
margin-top: 3rem;
font-size: 0.9rem;
opacity: 0.7;
}
</style>
</head>
<body>
<div class="container">
<h1>Read With Your <span class="highlight">Ears!</span> ๐ง</h1>
โ โ
<p>Who says reading means staring at a page? Audiobooks let you dive into epic fantasy worlds, gripping mysteries, and hilarious memoirsโall while keeping your eyes and hands free. Plug in, press play, and let world-class voice actors bring the story to life.</p>
<ul class="perks">
<li>๐ฎ Listen while gaming</li>
<li>๐ถโโ๏ธ Perfect for walks</li>
<li>๐งน Make chores less boring</li>
</ul>
<p><strong>Ready to find your next obsession? Pick your app and start listening today:</strong></p>
<div class="button-container">
<a href="https://www.audible.com" target="_blank" class="btn btn-audible">
Listen on Audible
</a>
<a href="https://play.google.com/store/books" target="_blank" class="btn btn-google">
Google Play Books
</a>
<a href="https://libbyapp.com" target="_blank" class="btn btn-libby">
Free on Libby
</a>
</div>
</div>
<div class="footer">
<p>Pro tip: Libby connects to your local library card for 100% free audiobooks! ๐โจ</p>
</div>
</body>
</html>