2025-01-04 15:53:31 +01:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body,
|
|
|
|
html {
|
2025-01-04 15:53:31 +01:00
|
|
|
height: 100%;
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #000;
|
|
|
|
color: white;
|
|
|
|
overflow: hidden;
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.landing-page {
|
2025-01-04 15:53:31 +01:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.game-background {
|
2025-01-04 15:53:31 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
|
|
|
|
backdrop-filter: blur(8px); /* Apply blur effect to the background */
|
|
|
|
z-index: -1; /* Ensures it's in the background */
|
|
|
|
pointer-events: none; /* Prevent interaction with the blurred background */
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2025-01-04 15:53:31 +01:00
|
|
|
text-align: center;
|
|
|
|
z-index: 1; /* Ensure content appears above the game background */
|
|
|
|
padding: 20px;
|
|
|
|
max-width: 600px; /* Limit the width of the content */
|
|
|
|
position: relative;
|
|
|
|
color: white;
|
|
|
|
backdrop-filter: blur(8px); /* Ensure content has some blur as well for contrast */
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2025-01-04 15:53:31 +01:00
|
|
|
font-size: 2rem;
|
|
|
|
margin-bottom: 20px;
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2025-01-04 15:53:31 +01:00
|
|
|
font-size: 1.2rem;
|
|
|
|
margin-bottom: 30px;
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
2025-01-04 15:53:31 +01:00
|
|
|
padding: 12px 24px;
|
|
|
|
background-color: #ffcc00;
|
|
|
|
color: black;
|
|
|
|
border: none;
|
|
|
|
font-size: 18px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 5px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
transition: background-color 0.3s ease;
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
2025-01-04 15:53:31 +01:00
|
|
|
background-color: #ff9900;
|
2025-01-05 01:16:38 +01:00
|
|
|
}
|