Changed around line 1
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background: linear-gradient(135deg, #1e3c72, #2a5298);
+ color: #fff;
+ font-family: 'Arial', sans-serif;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ overflow: hidden;
+ }
+
+ .container {
+ text-align: center;
+ }
+
+ .message-box {
+ background: rgba(255, 255, 255, 0.1);
+ padding: 2rem;
+ border-radius: 15px;
+ backdrop-filter: blur(10px);
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
+ }
+
+ .title {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 2s ease-in-out;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ animation: fadeIn 3s ease-in-out;
+ }
+
+ .fireworks {
+ position: relative;
+ width: 100%;
+ height: 200px;
+ margin-top: 2rem;
+ }
+
+ .firework {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ background: #ffeb3b;
+ border-radius: 50%;
+ animation: explode 2s infinite ease-in-out;
+ }
+
+ .firework:nth-child(1) {
+ left: 20%;
+ top: 50%;
+ animation-delay: 0s;
+ }
+
+ .firework:nth-child(2) {
+ left: 50%;
+ top: 30%;
+ animation-delay: 1s;
+ }
+
+ .firework:nth-child(3) {
+ left: 80%;
+ top: 60%;
+ animation-delay: 1.5s;
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+
+ @keyframes explode {
+ 0% {
+ transform: scale(1);
+ opacity: 1;
+ }
+ 100% {
+ transform: scale(10);
+ opacity: 0;
+ }
+ }
+
+ @media (max-width: 768px) {
+ .title {
+ font-size: 2rem;
+ }
+
+ .subtitle {
+ font-size: 1rem;
+ }
+ }