2021-12-21 15:42:32 +01:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2022-03-18 01:53:30 +01:00
|
|
|
/*display: flex;
|
|
|
|
flex-direction: column;*/
|
|
|
|
display: grid;
|
2021-12-24 12:59:33 +01:00
|
|
|
min-height: 100vh;
|
2022-03-18 01:53:30 +01:00
|
|
|
grid-template-rows: auto 1fr auto;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2023-01-11 20:06:57 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-12-21 15:42:32 +01:00
|
|
|
margin-top: 2em;
|
|
|
|
margin-left: 3em;
|
2023-01-11 20:06:57 +01:00
|
|
|
margin-right: 3em;
|
|
|
|
grid-column: 1 / 3;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
2022-03-18 01:53:30 +01:00
|
|
|
header a {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2023-01-18 00:19:40 +01:00
|
|
|
#header-glider {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header-glider img {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header h2 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2023-01-11 20:06:57 +01:00
|
|
|
#lang {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lang img {
|
|
|
|
border: 2px solid black;
|
|
|
|
filter: brightness(50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
#lang #choose {
|
|
|
|
filter: brightness(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
#lang img:hover {
|
|
|
|
filter: brightness(100%);
|
|
|
|
border-color: cyan;
|
|
|
|
}
|
|
|
|
|
2021-12-26 12:34:51 +01:00
|
|
|
#header-links {
|
2022-03-18 01:53:30 +01:00
|
|
|
margin: 2em 0 2em 3em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
grid-column: 1;
|
2021-12-26 12:34:51 +01:00
|
|
|
}
|
|
|
|
|
2022-03-18 01:53:30 +01:00
|
|
|
#header-links a {
|
2021-12-26 12:34:51 +01:00
|
|
|
color: black;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2022-03-18 01:53:30 +01:00
|
|
|
#header-links a:hover {
|
2021-12-26 12:34:51 +01:00
|
|
|
color: white;
|
|
|
|
background-color: black;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
2022-03-18 01:53:30 +01:00
|
|
|
margin: 2em 3em 5em 3em;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2021-12-24 13:17:11 +01:00
|
|
|
background-color: #304B99;
|
2021-12-21 15:42:32 +01:00
|
|
|
padding: 1em;
|
2022-11-17 00:26:23 +01:00
|
|
|
padding-bottom: 0;
|
2022-03-18 01:53:30 +01:00
|
|
|
grid-column: 1/3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#buttons {
|
|
|
|
margin-top: 1em;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#fsf {
|
2022-03-18 01:53:30 +01:00
|
|
|
text-align: right;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer-main {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 0.25fr 0.5fr 0.25fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer-text p {
|
|
|
|
justify-self: center;
|
|
|
|
margin: 0;
|
2021-12-24 13:17:11 +01:00
|
|
|
color: white;
|
2022-03-18 01:53:30 +01:00
|
|
|
text-align: center;
|
2021-12-21 15:42:32 +01:00
|
|
|
}
|
|
|
|
|
2021-12-24 13:17:11 +01:00
|
|
|
#footer-text a, #footer-text span {
|
|
|
|
color: white;
|
2021-12-22 04:28:07 +01:00
|
|
|
}
|
|
|
|
|
2021-12-21 15:42:32 +01:00
|
|
|
#footer-contact {
|
|
|
|
padding-top: 1em;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer-link-email {
|
|
|
|
color: black;
|
|
|
|
text-decoration: underline dotted;
|
2021-12-22 04:28:07 +01:00
|
|
|
}
|
2022-03-18 01:53:30 +01:00
|
|
|
|
|
|
|
#buttons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-11-17 00:26:23 +01:00
|
|
|
|
|
|
|
#buttons div {
|
|
|
|
margin-bottom: 1em;
|
2023-01-11 20:06:57 +01:00
|
|
|
}
|