| 12345678910111213141516171819202122232425 |
- .header{
- display: flex;
- justify-content: center;
- background: #001b2d;
- width: 100%;
- height: 75px;
- }
- .header a{
- display: flex;
- align-items: center;
- text-decoration: none;
- }
- .header img{
- display: inline-block;
- max-height: 65px;
- margin: 5px;
- text-align: center;
- }
- .header h1{
- display: inline-block;
- color: #ff626b;
- }
|