shared.css 431 B

12345678910111213141516171819202122232425
  1. .header{
  2. display: flex;
  3. justify-content: center;
  4. background: #001b2d;
  5. width: 100%;
  6. height: 75px;
  7. }
  8. .header a{
  9. display: flex;
  10. align-items: center;
  11. text-decoration: none;
  12. }
  13. .header img{
  14. display: inline-block;
  15. max-height: 65px;
  16. margin: 5px;
  17. text-align: center;
  18. }
  19. .header h1{
  20. display: inline-block;
  21. color: #ff626b;
  22. }