44 lines
631 B
CSS
44 lines
631 B
CSS
<!-- style.css -->
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background: linear-gradient(135deg, pink, violet);
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
header {
|
|
padding: 20px;
|
|
}
|
|
|
|
nav a {
|
|
margin: 0 10px;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button {
|
|
background: hotpink;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
color: white;
|
|
cursor: pointer;
|
|
border-radius: 20px;
|
|
}
|
|
img {
|
|
width: 200px;
|
|
border-radius: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* Glitzer Effekt */
|
|
body::after {
|
|
content: "✨ ✨ ✨";
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
opacity: 0.2;
|
|
pointer-events: none;
|
|
}
|
|
|