31 lines
478 B
CSS
31 lines
478 B
CSS
|
|
body {
|
||
|
|
background-color: black;
|
||
|
|
background-image: url("images/background.png");
|
||
|
|
background-attachment: fixed;
|
||
|
|
font-family: sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
div#SaturnLogo {
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
text-align: center;
|
||
|
|
margin-top: 3em;
|
||
|
|
margin-bottom: 10em;
|
||
|
|
}
|
||
|
|
|
||
|
|
div#ServicesGrid {
|
||
|
|
max-width: 80%;
|
||
|
|
gap: 2em;
|
||
|
|
margin: auto;
|
||
|
|
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row
|
||
|
|
}
|
||
|
|
|
||
|
|
div#ServicesGrid div {
|
||
|
|
margin
|
||
|
|
}
|
||
|
|
|
||
|
|
div#ServicesGrid img {
|
||
|
|
height: 5em;
|
||
|
|
}
|