56 lines
		
	
	
		
			862 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			862 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| html {
 | |
|     --color-dark: #141416;
 | |
|     --text-dark: var(--color-dark);
 | |
|     --text-light: #FFFFFF;
 | |
| 
 | |
|     --font-family: "Inter", sans-serif;
 | |
| 
 | |
|     font-family: var(--font-family);
 | |
| }
 | |
| 
 | |
| .container {
 | |
|     padding: 0 97px;
 | |
| }
 | |
| 
 | |
| .button {
 | |
|     padding: 16px 24px;
 | |
|     background-color: var(--color-dark);
 | |
|     border-radius: 16px;
 | |
|     color: var(--text-light);
 | |
|     font-weight: 600;
 | |
|     font-size: 16px;
 | |
|     line-height: 24px;
 | |
|     text-transform: uppercase;
 | |
| }
 | |
| 
 | |
| .header {
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
| }
 | |
| 
 | |
| .logo {
 | |
|     margin-right: 57px;
 | |
| }
 | |
| 
 | |
| .header .button {
 | |
|     margin-left: auto;
 | |
| }
 | |
| 
 | |
| .nav-list {
 | |
|     list-style: none;
 | |
|     padding: 0;
 | |
|     margin: 0;
 | |
|     color: #606060;
 | |
|     font-weight: 500;
 | |
|     font-size: 18px;
 | |
|     line-height: 27px;
 | |
|     text-transform: uppercase;
 | |
| 
 | |
|     display: flex;
 | |
|     gap: 53px;
 | |
| }
 | |
| 
 | |
| .header a {
 | |
|     text-decoration: none;
 | |
|     color: inherit;
 | |
| } |