45 lines
490 B
CSS
45 lines
490 B
CSS
|
body {
|
||
|
width: 900px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
#header {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#header-logo {
|
||
|
width: 500px;;
|
||
|
margin: auto;
|
||
|
margin-top: 30px;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.service-logo {
|
||
|
max-width: 100%;
|
||
|
max-height: 50px;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #000;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #000;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.vertical-align-center {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.horizontal-align-center {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|