| 12345678910111213141516171819202122232425 |
- .nav{
- height: 75px;
- padding: 10px;
- background: #2e2d2d;
- color: #165CA1;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .nav ul{
- display: flex;
- justify-content: center;
- align-items: center;
- list-style: none;
- }
- .nav ul li a {
- margin: 10px 15px;
- }
- .background{
- height: 100px;
- display: flex;
- background: #000000;
- align-self: center;
- }
|