← back to Model Arena
data/artifacts/0b9bb5066c06/hermes3-8b.html
70 lines
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Design Era Guessing Game</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
background-color: #faf8f4;
color: #1c1a17;
padding: 96px;
}
h1 {
font-family: 'Didot', 'Bodoni MT', 'Playfair Display', Georgia, serif;
font-size: 50px;
letter-spacing: .15em;
margin-bottom: 32px;
}
h2 {
font-size: 38px;
margin-bottom: 24px;
}
p {
max-width: 600px;
margin: 0 auto;
}
.card {
background-color: #fff9f1;
color: #3a2c22;
border-radius: 14px;
box-shadow: 0 8px 24px rgba(0,0,0,.12);
margin-bottom: 48px;
padding: 32px;
transition: box-shadow .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.card:hover {
box-shadow: 0 16px 48px rgba(0,0,0,.18);
transform: translateY(-8px);
}
.btn {
background-color: #f5f2ea;
color: #17171c;
border-radius: 14px;
padding: 12px 32px;
margin: 0 auto;
display: block;
text-align: center;
letter-spacing: .15em;
transition: background-color .3s, color .3s, box-shadow .3s;
}
.btn:hover {
color: #fff;
background-color: #17171c;
box-shadow: 0 8px 24px rgba(0,0,0,.18);
text-decoration: none;
}
</style>
</head>
<body>
<div class="card">
<h1>Which Design Era?</h1>
<p>Guess the design era from the vignette below and try to score as many points as you can in these 8 rounds!</p>
<!--
Place your era images, buttons and game logic here.
-->
</div>
</body>
</html>