<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nintendo Switch 2 – Jetzt erhältlich!</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
/* Hintergrund mit animiertem Farbverlauf */
body {
background: linear-gradient(-45deg, #ff0000, #a00000, #ff5500, #800000);
background-size: 400% 400%;
animation: gradientMove 6s infinite alternate ease-in-out;
color: white;
text-align: center;
padding: 50px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Container mit Shadow & Glow */
.container {
max-width: 600px;
padding: 25px;
background: rgba(0, 0, 0, 0.85);
border-radius: 15px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
transform: scale(1);
animation: fadeIn 1.5s ease-in-out;
}
h1 {
font-size: 42px;
margin-bottom: 10px;
text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}
/* Preis blinkt leicht */
.price {
font-size: 30px;
font-weight: bold;
margin: 15px 0;
color: yellow;
animation: blink 1s infinite alternate;
text-shadow: 0 0 10px yellow;
}
/* Switch-Bild mit 3D-Effekt */
.switch-image {
width: 100%;
max-width: 500px;
margin: 20px auto;
display: block;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
transform: rotate(-2deg) scale(1);
animation: float 3s infinite ease-in-out, glow 1.5s infinite alternate;
}
/* Schöner Button */
.buy-button {
display: inline-block;
padding: 15px 35px;
font-size: 22px;
background: yellow;
color: black;
text-decoration: none;
font-weight: bold;
border-radius: 50px;
transition: transform 0.3s ease-in-out, background 0.3s;
box-shadow: 0 0 15px rgba(255, 255, 0, 0.7);
}
.buy-button:hover {
background: white;
transform: scale(1.1);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}
/* Hintergrund-Animation */
@keyframes gradientMove {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
/* Gesamt-FadeIn */
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.8); }
to { opacity: 1; transform: scale(1); }
}
/* Preis-Blinken */
@keyframes blink {
0% { opacity: 1; }
100% { opacity: 0.7; }
}
/* Switch-Schwebe-Effekt */
@keyframes float {
0% { transform: rotate(-2deg) translateY(0) scale(1); }
50% { transform: rotate(2deg) translateY(-10px) scale(1.05); }
100% { transform: rotate(-2deg) translateY(0) scale(1); }
}
/* Glow Effekt */
@keyframes glow {
0% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
}
</style>
</head>
<body>
<div class="container">
<h1>Nintendo Switch 2</h1>
<p>Die Zukunft des Gaming – jetzt mit besserer Grafik, Performance & neuen Features!</p>
<img class="switch-image" src="switch2.png" alt="Nintendo Switch 2">
<p class="price">Preis: 799€</p>
<a href="#" class="buy-button">Jetzt kaufen</a>
</div>
</body>
</html>