File size: 902 Bytes
2e5f45b e2cac95 2e5f45b e2cac95 2e5f45b e2cac95 2e5f45b e2cac95 2e5f45b e2cac95 2e5f45b e2cac95 2e5f45b e2cac95 2e5f45b e2cac95 2e5f45b e2cac95 | 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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | body {
font-family: Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 0;
}
.container {
max-width: 700px;
margin: 40px auto;
background: #fff;
box-shadow: 0 4px 20px #ccd6df;
padding: 36px 24px;
border-radius: 12px;
}
header, footer {
text-align: center;
}
h1 {
color: #334155;
}
h2, h3 {
color: #2563eb;
}
ul {
margin-left: 18px;
}
button, .back-link {
background: #2563eb;
color: #fff;
padding: 14px 34px;
border: none;
border-radius: 7px;
cursor: pointer;
font-size: 1.12em;
margin: 24px 0 0 0;
text-decoration: none;
display: inline-block;
transition: background 0.2s;
}
button:hover, .back-link:hover {
background: #1d4ed8;
}
.center {
text-align: center;
}
article {
line-height: 1.7;
font-size: 1.1em;
margin-bottom: 32px;
}
strong {
color: #184ead;
}
|