|
body {
|
|
background-color: rgb(12, 185, 228);
|
|
font-family: 'Arial', sans-serif;
|
|
color: #5959e9;
|
|
text-align: center;
|
|
}
|
|
|
|
#attack-simulator {
|
|
margin: 20px auto;
|
|
padding: 20px;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
width: 80%;
|
|
max-width: 600px;
|
|
}
|
|
|
|
button {
|
|
margin: 10px;
|
|
padding: 10px 20px;
|
|
background-color: #dd3333;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #6b1515;
|
|
}
|
|
|
|
#attack-result {
|
|
margin-top: 20px;
|
|
}
|
|
|