53 lines
613 B
CSS
53 lines
613 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
header {
|
|
margin-top: 2em;
|
|
margin-left: 3em;
|
|
}
|
|
|
|
header a {
|
|
margin-right: 2em;
|
|
}
|
|
|
|
#main {
|
|
margin: auto;
|
|
margin-top: 5em;
|
|
margin-bottom: 5em;
|
|
width: 50%;
|
|
}
|
|
|
|
footer {
|
|
background-color: #3857b2;
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
|
|
#fsf {
|
|
justify-self: right;
|
|
}
|
|
|
|
#footer-main {
|
|
display: grid;
|
|
grid-template-columns: 0.25fr 0.5fr 0.25fr;
|
|
}
|
|
|
|
#footer-text p {
|
|
justify-self: center;
|
|
margin: 0;
|
|
}
|
|
|
|
#footer-text a {
|
|
color: black;
|
|
}
|
|
|
|
#footer-contact {
|
|
padding-top: 1em;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#footer-link-email {
|
|
color: black;
|
|
text-decoration: underline dotted;
|
|
}
|