File size: 668 Bytes
f2e8ebc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
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;
}
|