<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bull versus Bear 🐻</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bull versus Bear 🐻</title>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: 'Material Symbols Outlined', sans-serif;
}
.bull-bear-container {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}
.bull-section,
.bear-section {
position: absolute;
width: 100%;
height: 50%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 2rem;
}
.bull-section {
top: 0;
left: 0;
background-color: #fca5a5;
}
.bear-section {
bottom: 0;
left: 0;
background-color: #6ee7b7;
}
.team-container {
display: flex;
align-items: center;
space-x: 1rem;
}
.team-logo {
width: 8rem;
height: 8rem;
object-fit: contain;
}
.team-info {
display: flex;
flex-direction: column;
align-items: center;
}
.team-name {
font-size: 3.75rem;
font-weight: bold;
color: white;
}
.vs-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 6rem;
font-weight: bold;
color: white;
opacity: 0.5;
}
.timestamp {
position: absolute;
bottom: 1rem;
right: 1rem;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
font-size: 1.25rem;
}
.site-info {
position: absolute;
bottom: 1rem;
left: 1rem;
color: white;
font-size: 1.125rem;
}
@media (max-width: 768px) {
.team-name {
font-size: 2.5rem;
}
.team-logo {
width: 5rem;
height: 5rem;
}
.vs-text {
font-size: 4rem;
}
.timestamp {
font-size: 1rem;
}
.site-info {
font-size: 0.875rem;
}
}
</style>
</head>
<body>
<div class="bull-bear-container">
<div class="bull-section">
<div class="team-container">
<img src="https://image.pollinations.ai/prompt/bull?width=100&height=100&nologo=true" alt="Bull" class="team-logo">
<div class="team-info">
<span class="team-name">BULL</span>
<span>vs</span>
</div>
<img src="https://image.pollinations.ai/prompt/man%20in%20hat?width=100&height=100&nologo=true" alt="Man" class="team-logo">
</div>
</div>
<div class="bear-section">
<div class="team-container">
<img src="https://image.pollinations.ai/prompt/bear?width=100&height=100&nologo=true" alt="Bear" class="team-logo">
<div class="team-info">
<span class="team-name">BEAR</span>
<span>vs</span>
</div>
<img src="https://image.pollinations.ai/prompt/person%20in%20blue%20overalls?width=100&height=100&nologo=true" alt="Person" class="team-logo">
</div>
</div>
<div class="vs-text">VS.</div>
<div class="timestamp"></div>
<div class="site-info">OneMinuteEconomics.com</div>
</div>
<script>
function updateTimestamp() {
const now = new Date();
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
document.querySelector('.timestamp').textContent = `${hours}:${minutes}`;
}
updateTimestamp();
setInterval(updateTimestamp, 60000);
</script>
</body>
</html>
</body>
</html>