File size: 693 Bytes
11276e2 |
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 37 38 39 40 41 42 43 44 45 |
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
margin: 0;
padding: 0;
color: #212529;
}
h1 {
color: #b30000;
text-align: center;
padding: 20px;
background-color: #ffffff;
border: 2px solid #b30000;
}
p {
text-align: center;
font-size: 1.2em;
color: #495057;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
margin-top: 50px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
mark {
background-color: #b300002b;
color: black;
} |