2025-04-19 13:08:19 +02:00
|
|
|
body {
|
2025-04-19 20:51:23 +02:00
|
|
|
background-color: #f1e9df;
|
2025-04-21 19:30:36 +02:00
|
|
|
width: 960px;
|
|
|
|
margin: 0 auto;
|
2025-04-21 19:42:13 +02:00
|
|
|
padding: 60px 0 60px 0;
|
2025-04-21 19:30:36 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
|
|
|
gap: 60px;
|
|
|
|
font-size: 1.1rem;
|
2025-04-19 13:08:19 +02:00
|
|
|
}
|
2025-04-19 20:51:23 +02:00
|
|
|
header {
|
2025-04-21 19:30:36 +02:00
|
|
|
width: 160px;
|
|
|
|
margin: 0 10px;
|
|
|
|
grid-column: 1 / 2;
|
|
|
|
}
|
|
|
|
header h1 {
|
|
|
|
color: #181818;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
font-size: 2.13rem;
|
|
|
|
line-height: 34px;
|
|
|
|
letter-spacing: -1px;
|
|
|
|
}
|
|
|
|
header nav menu {
|
2025-04-21 02:22:11 +02:00
|
|
|
list-style-type: none;
|
2025-04-19 20:51:23 +02:00
|
|
|
}
|
2025-04-21 19:30:36 +02:00
|
|
|
header nav menu li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
header nav menu a {
|
|
|
|
color: #555;
|
|
|
|
font-size: 0.95rem;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
margin: 0 10px;
|
|
|
|
grid-column: 2 / 6;
|
|
|
|
}
|
|
|
|
main h2, main a {
|
|
|
|
color: #333;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
main p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
main p.no-margin {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
main ol {
|
|
|
|
margin: 5px 0 20px 10px;
|
|
|
|
list-style: decimal inside;
|
|
|
|
}
|
2025-04-20 12:16:09 +02:00
|
|
|
footer {
|
2025-04-21 19:30:36 +02:00
|
|
|
margin: 0 10px;
|
|
|
|
grid-column: 1 / 6;
|
|
|
|
}
|
|
|
|
footer address, footer p, footer a {
|
|
|
|
color: #555;
|
2025-04-20 12:16:09 +02:00
|
|
|
}
|