38 lines
622 B
CSS
38 lines
622 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: var(--primary-color);
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
text-align: center;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.container {
|
|
background-color: var(--secondary-color);
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
max-width: 920px;
|
|
}
|
|
|
|
h1 {
|
|
color: #e74c3c;
|
|
font-size: 48px;
|
|
margin: 0;
|
|
font-family: 'Press Start 2P', cursive;
|
|
}
|
|
|
|
p {
|
|
font-size: 18px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.blocked-ip {
|
|
font-weight: bold;
|
|
color: var(--text-muted);
|
|
}
|