└── style.css /style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'); 2 | 3 | body { 4 | font-family: 'Montserrat', sans-serif; 5 | } 6 | 7 | .role { 8 | color: #ff3232; 9 | } 10 | 11 | h1 { 12 | font-size: 48px; 13 | } 14 | 15 | h2 { 16 | font-size: 18px; 17 | } 18 | 19 | .main-info, 20 | .list { 21 | font-size: 14px; 22 | } 23 | --------------------------------------------------------------------------------